post-normalize
TypeScript icon, indicating that this package has built-in type declarations

0.0.4 • Public • Published

post-normalize

Express middleware for populating req.files and req.body fields from multipart/form-data request.

Usage

const postNormalize = require('post-normalize'),
    express = require('express'),
    bodyParser = require('body-parser'),
    app = express();
 
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));
app.use(postNormalize());

Package Sidebar

Install

npm i post-normalize

Weekly Downloads

1

Version

0.0.4

License

MIT

Last publish

Collaborators

  • imposibrus