mirror of
https://github.com/denoland/deno
synced 2024-11-05 18:45:24 +00:00
6be389ce29
Note: tests are not the only part of the codebase that uses `std`. Other parts, like `tools/`, do too. So, it could be argued that this is a little misleading. Either way, I'm doing this as discussed with @mmastrac.
12 lines
399 B
TypeScript
12 lines
399 B
TypeScript
import { copy } from "../../tests/util/std/streams/copy.ts";
|
|
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();
|
|
},
|
|
);
|