koa-exception

1.0.6 • Public • Published

koa-exception

It's a koa middleware. Dependency on koa@1.x.

Chinese Simplified

Why

When i use koa to dev my project that find everytime i have to handler exception at the route.

For example, a method maybe throws MongoError or other errors called by route,so you always must handler it.

However, that's a not good way to do bussiness.

Use koa-exception, what you need do is that focus on your bussiness.

Install

npm install koa-exception --save

Usage

app.js

var app = require('koa')();
var KoaEx = require('koa-exception');

/** NOTE:
KoaEx must be used first before any other middleware, and then 
it will catch all of the exception throwed by route,dao and os.
*/       
app.use(KoaEx());

var port = 3000;
app.listen(port, function() {
  console.log('Server running on port ' + port);
});

Dependents (1)

Package Sidebar

Install

npm i koa-exception

Weekly Downloads

1

Version

1.0.6

License

ISC

Last publish

Collaborators

  • qixin1991