1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-23 15:16:54 -05:00
denoland-deno/http
2019-02-10 18:45:24 -05:00
..
file_server.ts Add missiong copyright headers (denoland/deno_std#177) 2019-02-07 11:45:47 -05:00
file_server_test.ts Bump CI to v0.2.11 (denoland/deno_std#183) 2019-02-09 15:41:05 -05:00
http_bench.ts Add missiong copyright headers (denoland/deno_std#177) 2019-02-07 11:45:47 -05:00
http_status.ts Add missiong copyright headers (denoland/deno_std#177) 2019-02-07 11:45:47 -05:00
README.md Rename http/http.ts to http/server.ts (denoland/deno_std#170) 2019-02-02 18:57:38 -05:00
server.ts refactor: make acceptWebSocket independent from ServerRequest (denoland/deno_std#178) 2019-02-10 18:45:24 -05:00
server_test.ts refactor: make acceptWebSocket independent from ServerRequest (denoland/deno_std#178) 2019-02-10 18:45:24 -05:00

http

A framework for creating HTTP/HTTPS server.

Example

import { serve } from "https://deno.land/x/http/server.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"