import Koa from "koa"; const app = new Koa(); app.use((ctx) => { ctx.body = { url: ctx.request.url, }; }); app.listen(7860);