const koa = require('koa') const app = new koa() app.use(async (ctx, next) => { ctx.body = 'Hello World' }) app.listen(7860, () => { console.log('server is running at http://localhost:7860') })