/express-busboy

A simple body-parser like module for express that uses connect-busboy under the hood.

Primary LanguageJavaScriptBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

express-busboy

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.

usage

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.

configuration

bb.extend(app, {
    //busboy options can go here
});

file uploads

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.

build

Build Status