We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I think a group feature would be cool. It should maybe have some of the following features.
Maybe something like:
app.group((context) => { context.get(...); .... });
The text was updated successfully, but these errors were encountered:
I really don't think if this is the style of code intended for this project, but I love decorators like they are used in Spring
Why not trying to create this as a side project :
@Controller("hello") export default class students { @get("/") public static getStudent(req) { return "hello world"; } @get("/:name") public static getStudent(req) { return `hello, ${req.parameters.name} !`; } }
Sorry, something went wrong.
This looks very NestJS-ish, maybe it might go against the idea of being a minimal framework?
Exactly, that's why I talked about the idea of create such structure as a personal project instead of directly implementing this in aqua 😊
having decorators would definitely make the code much more readable from my personal opinion
No branches or pull requests
I think a group feature would be cool.
It should maybe have some of the following features.
Maybe something like:
The text was updated successfully, but these errors were encountered: