I am using nodejs + Express (v3) like this:
app.use(express.bodyParser()); app.route(\'/some/route\', function(req, res) { var text = req.body; // I expect
In express 4.x you can use the text parser from bodyParser https://www.npmjs.org/package/body-parser
just add in app.js
app.use(bodyParser.text());
Also in the desired route
router.all('/',function(req,res){ console.log(req.body); })