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