1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
denoland-deno/tests/testdata/echo_server.ts
2024-07-25 15:30:28 +10:00

12 lines
375 B
TypeScript

import { copy } from "@std/io/copy";
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) => {
console.log("received bytes:", await copy(conn, conn));
conn.close();
listener.close();
},
);