A simple body-parser
like module for express that
uses connect-busboy
under the hood.
It's designed to be more of a "drop in" replacement for body-parser
.
With it populating req.body
, there is very minimal code change needed to use it.
var bb = require('express-busboy');
var app = express();
bb.extend(app);
The module will populate req.body
and req.files
like the body-parser
module does.
bb.extend(app, {
//busboy options can go here
});
By default file uploads are disabled, the req.files
object will always be empty. You can activate them with:
bb.extend(app, {
upload: true,
path: '/path/to/save/files'
});
path
will default to: os.tmpdir()/express-busboy/<uuid>/<the field name>/<filename>
.
If needed, we could potentially add a filter for which url's have the ability to upload files.