Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/custom-server-koa/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"start": "NODE_ENV=production node server.js"
},
"dependencies": {
"koa": "^1.2.4",
"koa-router": "^5.4.0",
"koa": "^2.0.1",
"koa-router": "^7.1.0",
"next": "^2.0.0-beta",
"react": "^15.4.2",
"react-dom": "^15.4.2"
Expand Down
26 changes: 12 additions & 14 deletions examples/custom-server-koa/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,26 +11,24 @@ app.prepare()
const server = new Koa()
const router = new Router()

router.get('/a', function *() {
app.render(this.req, this.res, '/b', this.query)
this.respond = false
router.get('/a', async ctx => {
await app.render(ctx.req, ctx.res, '/b', ctx.query)
ctx.respond = false
})

router.get('/b', function *() {
app.render(this.req, this.res, '/a', this.query)
this.respond = false
router.get('/b', async ctx => {
await app.render(ctx.req, ctx.res, '/a', ctx.query)
ctx.respond = false
})

router.get('*', function *() {
handle(this.req, this.res)
this.respond = false
router.get('*', async ctx => {
await handle(ctx.req, ctx.res)
ctx.respond = false
})

server.use(function *(next) {
// Koa doesn't seems to set the default statusCode.
// So, this middleware does that
this.res.statusCode = 200
yield next
server.use(async (ctx, next) => {
ctx.res.statusCode = 200
await next()
})

server.use(router.routes())
Expand Down