I am using Express 3, and would like to handle text/plain POSTs.
Express 3 uses connect\'s bodyParser now (I think the old Express code got moved t
You may try this :
var expressApi= (req, res,params)=>{ console.log('req.body',params); var body = ''; req.on('data', function (data) { body += data; }); req.on('end', function () { res.write({status:200,message:'read data'}); }); }