mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
11 lines
326 B
TypeScript
11 lines
326 B
TypeScript
const addr = Deno.args[0] || "0.0.0.0:4544";
|
|
const [hostname, port] = addr.split(":");
|
|
const listener = Deno.listen({ hostname, port: Number(port) });
|
|
console.log("listening on", addr);
|
|
listener.accept().then(
|
|
async (conn): Promise<void> => {
|
|
await Deno.copy(conn, conn);
|
|
conn.close();
|
|
listener.close();
|
|
},
|
|
);
|