2.0.2 • Published 4 years ago

servie-errorhandler v2.0.2

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
4 years ago

Servie Errorhandler

NPM version NPM downloads Build status Test coverage

Map errors to a Servie response. Compatible with boom and http-errors.

Installation

npm install servie-errorhandler --save

Usage

import { Request } from "servie";
import { finalhandler } from "servie-finalhandler";
import { errorhandler } from "servie-errorhandler";

const app = compose([get(), post()]);
const req = new Request("/");

app(req, finalhandler(req)).catch(errorhandler(req));

TypeScript

This project is written using TypeScript and publishes the definitions directly to NPM.

License

Apache 2.0