I know how to access request a parameter in node.js with express, I can do it with
req.param('paramater')
req.query['paramater']
but I have stuck in a situation seen the docs but it is silent. I want to have two requests at the same page, but problem is one request override the other, Please suggest me how to get parameters for multiple requests?