1.0.3 • Published 8 years ago

missile-body v1.0.3

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

install

npm i --save missile-body

usage

var parse = require('missile-body');
app.post('/any', parse, function (req, res, next) { /* ... */ });
app.post('/json', parse.json, function (req, res, next) { /* ... */ });
app.post('/text', parse.text, function (req, res, next) { /* ... */ });
app.post('/form', parse.form, function (req, res, next) { /* ... */ });