2.0.0 • Published 1 year ago

@sr258/express-http-custom-error v2.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Express HTTP Custom Error

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

Installation

npm i @sr258/express-http-custom-error

Usage

Throwing an error:

const { BadRequest } = require('sr258@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('@sr258/express-http-custom-error');
const app = express();

...

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

1 year ago