1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-15 10:35:19 -05:00
denoland-deno/http
Ryan Dahl 4cf39d4a14
Rename assertEq to assertEquals (#242)
After some discussion it was found that assertEquals is more common
in JS (vs assertEqual, assertEq) and sounds better in the negated form:
assertNotEquals vs assertNE.
2019-03-06 19:42:24 -05:00
..
file_server.ts Change import { x } from "deno" to const { x } = Deno (#218) 2019-02-26 00:35:50 -05:00
file_server_test.ts Rename assertEq to assertEquals (#242) 2019-03-06 19:42:24 -05:00
http_bench.ts Fix import in http_bench.ts (#217) 2019-02-24 13:53:13 -08:00
http_status.ts Add missiong copyright headers (#177) 2019-02-07 11:45:47 -05:00
README.md Replace deno.land/x/ with deno.land/std/ (#239) 2019-03-06 10:24:53 -05:00
server.ts Testing refactor (#240) 2019-03-06 16:39:50 -05:00
server_test.ts Rename assertEq to assertEquals (#242) 2019-03-06 19:42:24 -05:00

http

A framework for creating HTTP/HTTPS server.

Example

import { serve } from "https://deno.land/std/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/std/http/file_server.ts --allow-net"