@celeri/http-error

HttpError class and general error handler middleware

Usage no npm install needed!

<script type="module">
  import celeriHttpError from 'https://cdn.skypack.dev/@celeri/http-error';
</script>

README

$ 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
}))