Map errors to a Servie response
npm install servie-errorhandler



> Map errors to a Servie response. Compatible with boom and http-errors.
```
npm install servie-errorhandler --save
`ts
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));
``
This project is written using TypeScript and publishes the definitions directly to NPM.
Apache 2.0