Supporting .all routes registration
You can also register a route handler for all
supported HTTP methods:
service.all('/allmethodsroute', function (req, res) {
res.send(200)
});
You can also register a route handler for all
supported HTTP methods:
service.all('/allmethodsroute', function (req, res) {
res.send(200)
});