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-04-07 20:30:45 -04:00
..
file_server.ts fix: eslint errors (denoland/deno_std#265) 2019-03-12 01:51:51 -04:00
file_server_test.ts fix: eslint errors (denoland/deno_std#265) 2019-03-12 01:51:51 -04:00
http_bench.ts Remove await from respond in http_bench.ts (denoland/deno_std#324) 2019-04-07 03:58:01 +03:00
http_status.ts Add missiong copyright headers (denoland/deno_std#177) 2019-02-07 11:45:47 -05:00
README.md refactor: update for flag change in the next version (denoland/deno_std#327) 2019-04-07 20:30:45 -04:00
server.ts fix: eslint errors (denoland/deno_std#265) 2019-03-12 01:51:51 -04:00
server_test.ts Rename assertEq to assertEquals (denoland/deno_std#242) 2019-03-06 19:42:24 -05:00
test.ts Test reorganization (denoland/deno_std#290) 2019-03-18 12:49:54 -04: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 --allow-net https://deno.land/std/http/file_server.ts"