Skip to content

Releases: taburetkin/yaff-routing

v1.1.0

20 Apr 14:56
Compare
Choose a tag to compare
  • setErrorHandlers prepared for new API
  • tested and covered nesting routers

v1.0.2

17 Apr 14:43
Compare
Choose a tag to compare
  • fixed issue with silent exceptions in case when there are no error handlers was provided

v1.0.1

15 Apr 13:27
Compare
Choose a tag to compare
some fixes, coverage tests

released as npm package

15 Oct 12:26
Compare
Choose a tag to compare
v1.0.0

renamed to yaff-routing

v0.3.0 available. now with nesting routers

14 Oct 13:49
Compare
Choose a tag to compare

this simple example will explain everything

let acc = new Router();
acc.get('login', () => ...);
acc.get('register', () => ...);

routing.use('acc', acc);