I need to avoid writing hardcoding URls in Node apps(code or views). Is there a package?
Now I write in Jade:
a(href='/account/profile') Profile
Profile url is hardcoded.
I need something like this:
a(href=links.accounts.profile()) Profile
It will be very useful when I will change URLs. I need to be able to change URLs just from a config file, not from all views...