Hello World example

suggest change
const Koa = require('koa')

const app = new Koa()

app.use(async ctx => {
   ctx.body = 'Hello World'
})

app.listen(8080)

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents