import Koa from 'koa'; const app = new Koa(); app.use((ctx, next)=>{ ctx.body = 'hello world'; }) app.listen(8002); console.log("http://127.0.0.1:8002")