summaryrefslogtreecommitdiff
path: root/examples/echo_server.ts
blob: 1d5b287db7b5b96a884ffdea476393e57146b943 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { listen, copy } from "deno";

(async () => {
  const addr = "0.0.0.0:8080";
  const listener = listen("tcp", addr);
  console.log("listening on", addr);
  while (true) {
    const conn = await listener.accept();
    copy(conn, conn);
  }
})();