0.1.0 • Published 5 years ago

express-http-errors-json v0.1.0

Weekly downloads
1
License
AGPL-3.0
Repository
github
Last release
5 years ago

express-http-errors-json

Easy access to HTTP errors for Express

Installation

$ npm install --save express-http-errors-json

Usage

This package exposes some commonly used abstracted HTTP errors to be returned along with short messages in JSON format. Mainly useful for JSON APIs.

import { BadRequest } from 'express-http-errors-json';

router.get('/', (req, res) => {
	BadRequest(res, 'The received request was invalid');
});

Exposed functions

Function nameHTTP Code
BadRequest400
Unauthenticated401
Forbidden403
NotFound404
TooManyRequests429
ServerError500
BadGateway502
ServiceUnavailable503

About

License

Copyright © 2018, nukeop. Released under the Affero GPL 3.0 License.