blob: 5776e77ef41cdf7ed86061b376920c9f5a206fd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
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);
}
})();
|