Is it possible to add a prefix to only certain routes in express.js? I understand that using app.router() allows for adding a mount point, but this applies to all routes.
I'm interested in finding a method to insert /api/v1/ before several routes without having to specify it for each individual route.