test-apithing
v1.0.0
Published
A new way to write js apis
Downloads
3
Readme
@test/apithing
the idea is simple what if this:
let router = new Router();
router.createRoute = {
route: '',
bodyType: '',
process: (request) => {},
};
// or
router.createRoutes = [
{
route: '/hello',
bodyType: '',
process: (request) => {},
}
]
router.start(1337);