I\'m considering using Express framework in my next node.js project. However, a stumbling block for me is non-existence of URL generation for routes like in most other non-S
Or stick with express and use the package reversable-router.
Example from the readme:
app.get('/admin/user/:id', 'admin.user.edit', function(req, res, next){ //... }); //.. and a helper in the view files: url('admin.user.edit', {id: 2})