Spaces:
Sleeping
Sleeping
File size: 357 Bytes
c24174e cd60ce3 0fb7b7d cd60ce3 c24174e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
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);
|