From 0422b224e8a55bf259cdbe955d825229496a0687 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 3 Oct 2018 23:58:29 -0400 Subject: First pass at support for TCP servers and clients. (#884) Adds deno.listen(), deno.dial(), deno.Listener and deno.Conn. --- js/deno.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'js/deno.ts') diff --git a/js/deno.ts b/js/deno.ts index b4181de14..c12df1236 100644 --- a/js/deno.ts +++ b/js/deno.ts @@ -21,4 +21,5 @@ export { platform } from "./platform"; export { trace } from "./trace"; export { truncateSync, truncate } from "./truncate"; export { FileInfo } from "./fileinfo"; +export { connect, dial, listen, Listener, Conn } from "./net"; export const args: string[] = []; -- cgit v1.2.3