So in Express you can do:
app.get(\'/logo/:version/:name\', function (req, res, next) { // Do something }
and
app.a
You can use .route() method.
function logo(req, res, next) { // Do something } app.route('/logo/:version/:name').get(logo).head(logo);