Skip to content

koexjs/joi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

joi

NPM version Coverage Status Dependencies Build Status license issues

joi for koa extend.

Install

$ npm install @koex/joi

Usage

// 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');
});

Related