1.0.0 • Published 8 years ago

koa2-cors-error v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

koa-cors-error

Module has fixed the bug when the system didn't send the 4xx or 5xx statuses through cross-domain requests. koa onerror method have been completely replaced.

Installation

$ npm install koa-cors-error

Use

var corsError = require('koa-cors-error');

app.use(cors());
app.use(corsError());

app.use(function(ctx, next) {
    ctx.throw(400);
});