I am trying to retrieve values sent to the server:
"/stuff?a=a&b=b&c=c"
Can you please advise me on how to extract these values using express?
So far, I have attempted...
app.get( "/stuff?:a&:b&:c", function( req, res ){});
...but unfortunately, it seems that the route is not being recognized.
Thank you in advance for any assistance you can provide.