aqua icon indicating copy to clipboard operation
aqua copied to clipboard

A minimal and fast 🏃 web framework for Deno

Results 8 aqua issues
Sort by recently updated
recently updated
newest added

## Goals * Create a type-safe way of defining different steps within a single route * Allow sub-routes at any point * Better body parsing

Sometimes, the following error appears randomly when I do a request : ``` error: Uncaught (in promise) Http: connection closed before message completed at Object.respondWith (deno:ext/http/01_http.js:254:21) ``` Unfortunately, I don't...

I think a group feature would be cool. It should maybe have some of the following features. * Prefix * Middleware Maybe something like: ```typescript app.group((context) => { context.get(...); .......

enhancement
suggestion

Allowing users to define a default index page such as `index.html` when creating a new static route Example: ```typescript app.serve("public", "/", { index: "index.html", }); ``` ``` GET / OK...

How to get user ip address

question

Log more important information (for example at the body parsing part)

enhancement

Do you have plan to support graphql like below? 1. Developer can register graphql support like Middleware. 2. GraphQL handler to simplified implementation.

suggestion
hacktoberfest