I have a problem trying to set a route in Node JS with Express framework.
My route is this one:
app.get(\'/campaña/nueva\', sms.nueva);
I ran into the same problem with $ in my route. URL encoded character doesn't work in my case, but escaped one works.
$
So I ended up with
app.get('/\\$myRoute', function (req, res) { }