joi for koa extend.
$ npm install @koex/joi
// See more in test
import * as bodyParser from 'koa-body';
import onerror from '@zcorky/onerror';
import joi from '@koex/joi';
import * as router from '@koex/router';
import * as Koa from 'koa';
const app = new Koa();
app.use(onerror());
app.use(bodyParse());
app.use(joi());
app.use(router.post('/', (ctx, next) => {
const data = await ctx.validate({
name: 'string',
age: 'int',
});
ctx.body = data;
}));
app.listen(8000, '0.0.0.0', () => {
console.log('koa server start at port: 8000');
});