aqua
aqua copied to clipboard
A minimal and fast 🏃 web framework for Deno
## 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(...); .......
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...
Log more important information (for example at the body parsing part)
Do you have plan to support graphql like below? 1. Developer can register graphql support like Middleware. 2. GraphQL handler to simplified implementation.