redirect-localhost / server.ts
coyotte508's picture
coyotte508 HF Staff
fixup! ✨ Tada
ae53db5
raw
history blame
169 Bytes
import Koa from "koa";
const app = new Koa();
app.use((ctx) => {
ctx.body = {
fullUrl: ctx.request.url,
query: ctx.request.query,
};
});
app.listen(7860);