koa6
v1.0.0
Published
koa6 extend koa with plugins
Downloads
2
Readme
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()