1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-23 15:16:54 -05:00
denoland-deno/http
Vincent LE GOFF dcd01dd025 Eslint fixes (denoland/deno_std#356)
Make warnings fail
Original: 4543b563a9
2019-04-24 07:41:22 -04:00
..
cookie.ts http : Add cookie module (denoland/deno_std#338) 2019-04-24 07:38:52 -04:00
cookie_test.ts http : Add cookie module (denoland/deno_std#338) 2019-04-24 07:38:52 -04:00
file_server.ts Eslint fixes (denoland/deno_std#356) 2019-04-24 07:41:22 -04:00
file_server_test.ts Eslint fixes (denoland/deno_std#356) 2019-04-24 07:41:22 -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
racing_server.ts Eslint fixes (denoland/deno_std#356) 2019-04-24 07:41:22 -04:00
racing_server_test.ts Enforce HTTP/1.1 pipeline response order (denoland/deno_std#331) 2019-04-13 15:23:56 -04: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 Eslint fixes (denoland/deno_std#356) 2019-04-24 07:41:22 -04:00
server_test.ts Eslint fixes (denoland/deno_std#356) 2019-04-24 07:41:22 -04:00
test.ts http : Add cookie module (denoland/deno_std#338) 2019-04-24 07:38:52 -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"