mg-nd-rawbody
v0.0.3
Published
express support for get raw body on **POST** method, the content-type need to be `tex/plain`
Downloads
6
Readme
introduction
express support for get raw body on POST method, the content-type need to be tex/plain
how to configure
var app = require("express")();
app.use(require('mg-nd-rawbody'));
how to use
app.post('/', function(req, res){
res.send(req.rawBody);
});