@koex/joi
TypeScript icon, indicating that this package has built-in type declarations

0.0.5 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i @koex/joi

Weekly Downloads

0

Version

0.0.5

License

MIT

Unpacked Size

4.95 kB

Total Files

5

Last publish

Collaborators

  • uniquecolesmith