servie-errorhandler

Map errors to a Servie response

Usage no npm install needed!

<script type="module">
  import servieErrorhandler from 'https://cdn.skypack.dev/servie-errorhandler';
</script>

README

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