body-parser icon indicating copy to clipboard operation
body-parser copied to clipboard

Node.js body parsing middleware

Results 31 body-parser issues
Sort by recently updated
recently updated
newest added

In our project we send long string to our server (2mb). Playing with settings I noticed that, if we set strict false parsing is 5-10 ms faster. Digging dipper I've...

pr

Fixes #194 Further elaborations here: https://github.com/ljharb/qs/pull/268 Supports both the simple and extended parsers as outlined in https://github.com/ljharb/qs/pull/268#issuecomment-409195381 -- and doesn't use the equivalent capabilities of the qs module. Note: This...

enhancement
pr

Fix a typo in README

docs
pr

Right now, `body-parser` provided out-of-the-box support for `gzip`, `deflate`, and `identitiy` content encodings. This is nice, but we can do even better by allowing users to define custom content encoding...

enhancement
ideas

https://github.com/expressjs/compression/pull/172 https://medium.com/oyotech/how-brotli-compression-gave-us-37-latency-improvement-14d41e50fee4 https://caniuse.com/#feat=brotli (Originally https://github.com/expressjs/body-parser/pull/403)

enhancement
pr

Following up from https://github.com/expressjs/body-parser/pull/326

enhancement
pr

# Requirement Let the JSON body parser package raise an error if the payload is empty. This middleware maybe added for certain `POST` or `PUT` requests. ## Solution Check for...

pr
needs tests
needs docs

Discussion in #281 led to this PR. This PR refactors all existing parsers, extracting common parsing functionality into a `generic-parser`, which the parser are built on top of. This makes...

enhancement
pr
needs tests
needs docs

I was messing around with an Express route I had `bodyParser.json()` on, and kind of assumed that if I gave it a random POST, it would fail. But after reading...

pr
ideas

- Sometime we need to encrypt response and request from client to server to ensure security

enhancement
pr
needs rebase