Good day.
Faced with the banal task - get the parameter from Url.
url.parse (request.url) .query); getting from url
http: // localhost: 8888 / delay? cat = betty I was able to get the parameters: cat = betty
url.parse (request.url) .query ["cat"]; -> undefined
How can I programmatically get a collection of parameters and then get a value for each of them? Is this possible here?
thank