Skip to content

Supporting .all routes registration

Choose a tag to compare

@jkyberneees jkyberneees released this 24 Feb 10:33
· 331 commits to master since this release
ef533a4

You can also register a route handler for all supported HTTP methods:

service.all('/allmethodsroute', function (req, res) {
    res.send(200)
});