Anyone have a simple example using Koa 2?
const n = next({ dev })
const handle = n.getRequestHandler()
n.prepare()
.then(() => {
const app = new Koa()
const router = new Router()
router.get('*', async ctx => {
await handle(ctx.req, ctx.res)
ctx.respond = false
})
app.use(async (ctx, next) => {
// Koa doesn't seems to set the default statusCode.
// So, this middleware does that
ctx.res.statusCode = 200
await next()
})
app.use(router.routes())
app.listen(3000)
})
@timneutkens as Node now has async/await, Koa 2.0.1 was just released 3 days ago 馃槃 I guess it would make sense to update the example to use this version.
True, I'll create a new ticket.
Most helpful comment