BackendStack21 / restana

Restana is a lightweight and fast Node.js framework for building RESTful APIs.
MIT License
467 stars 27 forks source link

adding support for .all routes registration #24

Closed jkyberneees closed 5 years ago

jkyberneees commented 5 years ago

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

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