A full-featured http proxy for node.js
Questions tagged [node-http-proxy]
271 questions
-1
votes
2 answers
Get request body for post operation
I use the http module and I need to get the req.body
currently I try with the following without success .
http.createServer(function (req, res) {
console.log(req.body);
this return undfiend ,any idea why?
I send via postman some short text...

07_05_GuyT
- 2,787
- 14
- 43
- 88