Releases: taburetkin/yaff-routing
Releases · taburetkin/yaff-routing
v1.1.0
v1.0.2
- fixed issue with silent exceptions in case when there are no error handlers was provided
v1.0.1
some fixes, coverage tests
released as npm package
v1.0.0 renamed to yaff-routing
v0.3.0 available. now with nesting routers
this simple example will explain everything
let acc = new Router();
acc.get('login', () => ...);
acc.get('register', () => ...);
routing.use('acc', acc);