redirect-localhost / server.ts
coyotte508's picture
coyotte508 HF Staff
Update server.ts
3726cd2
raw
history blame
314 Bytes
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);