The Deno Standard Library
Go to file
2018-11-09 17:23:01 -05:00
.travis.yml Simplify travis. 2018-11-08 11:58:41 -05:00
buffer_test.ts Use https instead of http. 2018-11-07 23:22:33 -05:00
buffer.ts First pass at TextProtoReader. 2018-11-08 12:26:20 -05:00
bufio_test.ts First pass at BufWriter 2018-11-09 13:25:30 -05:00
bufio.ts Basic http demo working. 2018-11-09 17:23:01 -05:00
file_server.ts First pass at bufio.read tests. 2018-11-07 14:17:36 -05:00
http_status.ts Basic http demo working. 2018-11-09 17:23:01 -05:00
http_test.ts Basic http demo working. 2018-11-09 17:23:01 -05:00
http.ts Basic http demo working. 2018-11-09 17:23:01 -05:00
iotest.ts Add bufio tests. 2018-11-07 20:28:01 -05:00
Makefile Add BufReader.peek() 2018-11-08 04:01:20 -05:00
README.md Add BufReader.peek() 2018-11-08 04:01:20 -05:00
test.ts First pass at TextProtoReader. 2018-11-08 12:26:20 -05:00
textproto_test.ts Add tests for TextProtoReader.readMIMEHeader() 2018-11-08 12:58:43 -05:00
textproto.ts Basic http demo working. 2018-11-09 17:23:01 -05:00
util.ts First pass at TextProtoReader. 2018-11-08 12:26:20 -05:00

Deno Networking Libraries

Build Status

Usage:

import { serve } from "https://deno.land/x/net/http.ts";
const s = serve("0.0.0.0:8000");
for await (const req of s) {
  req.respond({ body: "Hello World\n" });
}