Is it possible to retrieve the body contents using express?
body
express
I started by trying body-parser but that doesn\'t seem to work wit
body-parser
GET requests don't have a body, they have query strings. In order to access a query string in expressJS you should use the req.query object.
req.query
res.end(JSON.stringify(req.query, null, 2));