Мой сценарий прост,
app.use('/health/*', (req, res, next) => { // if the requested URL is GET /health/users/list // i want to the request to be handled by // users.list through the next route handler }); app.post('/users/list', users.list);