2.0.1 • Published 4 years ago

@celeri/http-error v2.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
4 years ago
$ npm install --save @celeri/http-error

Import

ES6 Modules

import { HttpError, errorHandler } from '@celeri/http-error';

CommonJS Modules

const { HttpError, errorHandler } = require('@celeri/http-error');

Usage

// Create error objects to represent what went wrong
const error = new HttpError(404, 'Could not find the requested document');

// Create your middleware with a processor that takes in an HttpError and returns
// a response payload
const errorMiddleware = errorHandler(({ error }) => ({
	error: error.message
}))