test-req / server.ts
coyotte508's picture
coyotte508 HF staff
Update server.ts
cd60ce3 verified
raw
history blame
357 Bytes
import Koa from "koa";
const app = new Koa();
let headers;
app.use(async (ctx) => {
if (ctx.request.url.startsWith("/img/")) {
ctx.body = "no image";
headers = Object.fromEntries(Object.entries(ctx.request.headers));
return;
}
console.log(ctx.request.url, ctx.request.method);
ctx.body = {
headers,
};
});
app.listen(7860);