1.0.0 • Published 6 years ago

koa6 v1.0.0

Weekly downloads
1
License
MIT
Repository
-
Last release
6 years ago

koa6

koa6 extend koa with plugins (middleware).

Install

$ npm install koa6

Example

const Koa6 = require('../src/index')
const app = new Koa6({
  key:'adsju198237481uumadksdfjlmlva@*)!(*&#)@',
  port: 80,
  maxAge: 86400000/2,
})
app.static('./')
app.router.get('/hello', async (ctx) => {
  ctx.body = 'hello!'
})
app.run()