koa-error-catcher

1.0.4 • Public • Published

koa-error-catcher

a koa2 middleware to catch error and set response

Install

npm install koa-error-catcher

Usage

const Koa = require('koa');
const app = new Koa();
const errorCatcher = require('koa-error-catcher');

// error catcher 
app.use(errorCatcher);

app.use(ctx => {
    ctx.throw('throw an error')
    ctx.body = {ok: 1}
});

app.listen(3030);

//  curl -v 127.0.0.1:3030
//  response 500 & body is {"message":"throw an error"}

/koa-error-catcher/

    Package Sidebar

    Install

    npm i koa-error-catcher

    Weekly Downloads

    2

    Version

    1.0.4

    License

    ISC

    Last publish

    Collaborators

    • dengyaolong