Skip to content

v0.1.1

Choose a tag to compare

@lukeed lukeed released this 23 Dec 04:27
· 84 commits to main since this release

Patches

  • Allow .add|method to be chainable: 6df84c5

    Enables chained definitions:

    new Trouter()
        .get('/foo', (req, res) => {})
        .get('/bar/:baz', (req, res) => {})