0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/cli/bench/node_http_proxy.js

23 lines
602 B
JavaScript
Raw Normal View History

// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
2019-06-06 12:44:35 -04:00
const http = require("http");
const port = process.argv[2] || "4544";
const originPort = process.argv[3] || "4545";
console.log("port", port);
http
.Server((req, res) => {
const options = {
port: originPort,
path: req.url,
method: req.method,
headers: req.headers,
2019-06-06 12:44:35 -04:00
};
const proxy = http.request(options, (proxyRes) => {
2019-06-06 12:44:35 -04:00
res.writeHead(proxyRes.statusCode, proxyRes.headers);
proxyRes.pipe(res, { end: true });
2019-06-06 12:44:35 -04:00
});
req.pipe(proxy, { end: true });
2019-06-06 12:44:35 -04:00
})
.listen(port);