UNPKG

esrol-router

Version:

You can create new routes, set allowed ways of reaching them, handle requests, get information regarding those routes, and set middleware.

10 lines (8 loc) 145 B
'use strict'; module.exports = { url: '/fourOhFour', all: function(req, res) { res.statusCode = 404; res.end('fourOhFour'); }, };