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-06 10:24:53 -05:00
..
file_server.ts Change import { x } from "deno" to const { x } = Deno (denoland/deno_std#218) 2019-02-26 00:35:50 -05:00
file_server_test.ts Change import { x } from "deno" to const { x } = Deno (denoland/deno_std#218) 2019-02-26 00:35:50 -05:00
http_bench.ts Fix import in http_bench.ts (denoland/deno_std#217) 2019-02-24 13:53:13 -08: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 Change import { x } from "deno" to const { x } = Deno (denoland/deno_std#218) 2019-02-26 00:35:50 -05:00
server_test.ts Change import { x } from "deno" to const { x } = Deno (denoland/deno_std#218) 2019-02-26 00:35:50 -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"