I have a request being sent to the server:
\"/stuff?a=a&b=b&c=c\"
Using express, how do I get these values?
I have tried th
It's not a good idea to use a query string inside a route.
In Express logic you need create a route for "/stuff". The query string will be available in req.query.
req.query