npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

express-body-parser-error-handler

v1.0.7

Published

middleware to be set right after body parser in order to return 4xx error back to the client

Downloads

26,286

Readme

express-body-parser-error-handler

middleware to be set right after body parser in order to handle all body parser errors and return 4xx responses to the client

JavaScript Style Guide Node.js CI Coverage Status Build Status

About

99.9% of the time your going to use body parser on your express server application , even if your going to use express.json,raw,text or urlencoded under the hood it also uses body parser express source code

There’re multiple kinds of errors raised by body-parser. They involve sending bad headers or data that are not accepted by it, or canceling requests before all the data is read. Various 400 series error status codes will be sent as the response along with the corresponding error messages and stack trace the problem is when errors thrown from this middleware you need to handle them by yourself and all errors thrown from body parser are usually 4xx errors caused by client

for example:

| Type | Code | description | |----------|:-------------:|------:| |encoding.unsupported|415|content encoding unsupported| |entity.parse.failed|400| | |entity.verify.failed|403| | |request.aborted|400 |request is aborted by the client before reading the body has finished| |request.size.invalid|400|request size did not match content length| |stream.encoding.set|500|stream encoding should not be set| |parameters.too.many|413| | |charset.unsupported|415| unsupported charset “BOGUS”| |encoding.unsupported|415|unsupported content encoding “bogus”| |entity.too.large|413| |

use this package if you don't want to handle them yourself :-)

Install

$ npm i express-body-parser-error-handler

Example

 request(app)
        .post('/')
        .set('Content-Type', 'application/json')
        .send('{ email: \'email\', password: \'password\'')  //  <==== missing "}"  - invalid json   
        .expect(400, function (err, res) {
          expect(JSON.parse(res.text).message).to.equal(
   ====>        'Body Parser failed to parse request --> Unexpected token e in JSON at position 2'
          )
        })

Usage Example

const bodyParserErrorHandler = require('express-body-parser-error-handler')
const { urlencoded, json } = require('body-parser')
const express = require('express')
const app = express();
router.route('/').get(function (req, res) {
    return res.json({message:"🚀"});
});

// body parser initilization
app.use(urlencoded({extended: false, limit: '250kb'}));
app.use('/', json({limit: '250kb'}));

// body parser error handler
app.use(bodyParserErrorHandler());
app.use(router);
...

Configuration

onError - function(err, req, res) => { }

Custom on error callback useful if you want to log the error message or send metrics

app.use(bodyParserErrorHandler({
    onError = (err, req, res) => {
        ...
    }
}))

errorMessage - function(err) => { }

default:

errorMessage = (err) => {
    return `Body Parser failed to parse request --> ${err.message}`
}
app.use(bodyParserErrorHandler({
    errorMessage = (err) => {
        ...
    }
}))

License

MIT ©

if (this.repo.isAwesome || this.repo.isHelpful) {
  Star(this.repo);
}