1.0.2 • Published 3 years ago

express-http-custom-error v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Express HTTP Custom Error

Customizable HTTP Errors, compatible with es6 "throw" syntax, including a custom error handler for express APIs.

Installation

npm i express-http-custom-error

Usage

Throwing an error:

const { BadRequest } = require('express-http-custom-error');

router.post('/signin', async (req, res, next) => {
    try {
        const { username } = req.body;
        if (!username) throw new BadRequest('Must include username.');
        ...
    } catch (err) {
        next(err);
    }
});

Using the error handler:

const { errorHandler } = require('express-http-custom-error');
const app = express();

...

// All routers and other middleware must go before the error handler.
app.use(errorHandler);