I’m using Express JS and I want a functionality similar to Django’s reverse function. So if I have a route, for example
app.get('/users/:id/:name', function(req, res) { /* some code */ } )
I’d like to use a function for example
reverse('/users/:id/:name', 15, 'John');
or even better
reverse('/users/:id/:name', { id : 15, name : 'John' });
which will give me the url /users/15/John. Does such function exist? And if not then do you have any ideas how to write such function (considering Express’ routing algorithm)?
Here is your code: