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