req.route
Contains the currently-matched route, a string. For example:
app.get('/user/:id?', function userIdHandler(req, res) { console.log(req.route); res.send('GET'); });
Example output from the previous snippet:
{ path: '/user/:id?', stack: [ { handle: [Function: userIdHandler], name: 'userIdHandler', params: undefined, path: undefined, keys: [], regexp: /^\/?$/i, method: 'get' } ], methods: { get: true } }
Please login to continue.