1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/cli/bench/deno_http_proxy.ts

21 lines
612 B
TypeScript
Raw Normal View History

// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { serve, ServerRequest } from "../test_util/std/http/server.ts";
2019-06-06 12:44:35 -04:00
const addr = Deno.args[0] || "127.0.0.1:4500";
const originAddr = Deno.args[1] || "127.0.0.1:4501";
2019-06-06 12:44:35 -04:00
const server = serve(addr);
async function proxyRequest(req: ServerRequest): Promise<void> {
2019-06-06 12:44:35 -04:00
const url = `http://${originAddr}${req.url}`;
const resp = await fetch(url, {
method: req.method,
headers: req.headers,
2019-06-06 12:44:35 -04:00
});
req.respond(resp);
}
2019-10-27 09:04:42 -04:00
console.log(`Proxy listening on http://${addr}/`);
for await (const req of server) {
proxyRequest(req);
}