redirect-localhost / server.ts
coyotte508's picture
coyotte508 HF staff
Update server.ts
3206bae
raw
history blame contribute delete
230 Bytes
import Koa from "koa";
const app = new Koa();
app.use((ctx) => {
console.log(ctx.request.url, ctx.request.method);
ctx.status = 307;
ctx.set("location", `http://localhost:24242${ctx.request.path}`);
});
app.listen(7860);