std/http
2019-01-17 13:08:59 -05:00
..
file_server_test.ts Remove race-condition in file_server tests (#125) 2019-01-17 13:08:59 -05:00
file_server.ts Reorgnanize repos, examples and tests (#105) 2019-01-12 16:50:04 -05:00
http_bench.ts Reorgnanize repos, examples and tests (#105) 2019-01-12 16:50:04 -05:00
http_status.ts Reorgnanize repos, examples and tests (#105) 2019-01-12 16:50:04 -05:00
http_test.ts Reorgnanize repos, examples and tests (#105) 2019-01-12 16:50:04 -05:00
http.ts Remove race-condition in file_server tests (#125) 2019-01-17 13:08:59 -05:00
mod.ts Improve re-exports in http (#111) 2019-01-13 19:55:23 -05:00
README.md Improve http/README (#114) 2019-01-15 11:09:55 -05:00

http

A framework for creating HTTP/HTTPS server.

Example

import { serve } from "https://deno.land/x/http/mod.ts";
const s = serve("0.0.0.0:8000");

async function main() {
  for await (const req of s) {
    req.respond({ body: new TextEncoder().encode("Hello World\n") });
  }
}

main();

File Server

A small program for serving local files over HTTP.

Add the following to your .bash_profile

alias file_server="deno https://deno.land/x/http/file_server.ts --allow-net"