redirect-localhost / server.ts
coyotte508's picture
coyotte508 HF staff
Update server.ts
5ddc821
raw
history blame
223 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,
};
});
app.listen(7860);