1.0.7 • Published 11 months ago

express-body-parser-error-handler v1.0.7

Weekly downloads
-
License
ISC
Repository
github
Last release
11 months ago

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:

TypeCodedescription
encoding.unsupported415content encoding unsupported
entity.parse.failed400
entity.verify.failed403
request.aborted400request is aborted by the client before reading the body has finished
request.size.invalid400request size did not match content length
stream.encoding.set500stream encoding should not be set
parameters.too.many413
charset.unsupported415unsupported charset “BOGUS”
encoding.unsupported415unsupported content encoding “bogus”
entity.too.large413

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);
}
1.0.7

11 months ago

1.0.6

11 months ago

1.0.5

11 months ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago