I had been working on a new web-framework called jeep train.
Though it's completely experimental, I was trying to explore ways to minimize boilerplate, learning cost and if it is possible to write a router like you do in ruby or elixir.
Router looks like this.
router! {
const NAME_OF_THE_ROUTER;
scope "/api" {
scope "/v1" {
get api::v1::get;
post api::v1::create;
delete api::v1::destroy;
}
}
scope "/resource" {
resource index::resource;
}
}
It's been half a year since I last updated, but finally got some time to continue with the development again!
I'd appreciate your feedback!