UNPKG

express-mount-files

Version:

An express middleware for registering routes through your filesystem

7 lines (6 loc) 146 B
module.exports = function(req, res, next) { res.locals.value = 'get-last'; // Forward to the 'get' handler req.method = 'get'; next(); };