UNPKG

routey

Version:

Simple convention over configuration route setup for Express/NodeJS

15 lines (12 loc) 302 B
module.exports = { // Example of customized query parameter. route: ':myparam?', handler: function (req, res, params) { if (req.params.myparam) { res.send(req.params.myparam); } else { res.send('no param was specified'); } }, };