import Koa from "koa"; | |
const app = new Koa(); | |
app.use((ctx) => { | |
console.log(ctx.request.url, ctx.request.method); | |
ctx.body = { | |
fullUrl: ctx.request.url, | |
query: ctx.request.query, | |
headers: Object.fromEntries(Object.entries(ctx.request.headers)), | |
env: process.env | |
}; | |
}); | |
app.listen(7860); | |