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-03-09 11:46:53 -05:00
..
file_server.ts http: add return types (denoland/deno_std#250) 2019-03-08 13:04:02 -05:00
file_server_test.ts Rename assertEq to assertEquals (denoland/deno_std#242) 2019-03-06 19:42:24 -05:00
http_bench.ts Use Deno global var instead of built-in "deno" module (denoland/deno_std#247) 2019-03-07 19:25:16 -05:00
http_status.ts Add missiong copyright headers (denoland/deno_std#177) 2019-02-07 11:45:47 -05:00
README.md Replace deno.land/x/ with deno.land/std/ (denoland/deno_std#239) 2019-03-06 10:24:53 -05:00
server.ts Eslint Fix http (denoland/deno_std#257) 2019-03-09 11:46:53 -05:00
server_test.ts Rename assertEq to assertEquals (denoland/deno_std#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"