1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/http
2019-07-30 07:39:32 +00:00
..
testdata Ignore error of writing responses to aborted requests (denoland/deno_std#546) 2019-07-28 11:35:47 +00:00
cookie.ts lint: add max line length rules (denoland/deno_std#507) 2019-06-18 21:22:01 -07:00
cookie_test.ts lint: add max line length rules (denoland/deno_std#507) 2019-06-18 21:22:01 -07:00
file_server.ts Make shebangs Linux compatible (denoland/deno_std#545) 2019-07-28 11:10:29 +00:00
file_server_test.ts refactor: use Deno.execPath where possible (denoland/deno_std#548) 2019-07-29 08:46:21 +00:00
http_bench.ts Clean up HTTP async iterator code (denoland/deno_std#411) 2019-05-20 09:17:26 -04:00
http_status.ts Add missiong copyright headers (denoland/deno_std#177) 2019-02-07 11:45:47 -05:00
racing_server.ts Ignore error of writing responses to aborted requests (denoland/deno_std#546) 2019-07-28 11:35:47 +00:00
racing_server_test.ts refactor: use Deno.execPath where possible (denoland/deno_std#548) 2019-07-29 08:46:21 +00:00
README.md Update instructions to install file server (denoland/deno_std#526) 2019-06-29 10:30:01 -04:00
server.ts Ignore error of writing responses to aborted requests (denoland/deno_std#546) 2019-07-28 11:35:47 +00:00
server_test.ts enable test of aborted conn on windows (denoland/deno_std#549) 2019-07-30 07:39:32 +00: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.

Helper to manipulate Cookie through ServerRequest and Response.

import { ServerRequest } from "https://deno.land/std/http/server.ts";
import { getCookies } from "https://deno.land/std/http/cookie.ts";

let request = new ServerRequest();
request.headers = new Headers();
request.headers.set("Cookie", "full=of; tasty=chocolate");

const cookies = getCookies(request);
console.log("cookies:", cookies);
// cookies: { full: "of", tasty: "chocolate" }

To set a Cookie you can add CookieOptions to properly set your Cookie

import { Response } from "https://deno.land/std/http/server.ts";
import { Cookie, setCookie } from "https://deno.land/std/http/cookie.ts";

let response: Response = {};
const cookie: Cookie = { name: "Space", value: "Cat" };
setCookie(response, cookie);

const cookieHeader = response.headers.get("set-cookie");
console.log("Set-Cookie:", cookieHeader);
// Set-Cookie: Space=Cat

Deleting a Cookie will set its expiration date before now. Forcing the browser to delete it.

import { Response } from "https://deno.land/std/http/server.ts";
import { delCookie } from "https://deno.land/std/http/cookie.ts";

let response: Response = {};
delCookie(response, "deno");

const cookieHeader = response.headers.get("set-cookie");
console.log("Set-Cookie:", cookieHeader);
// Set-Cookie: deno=; Expires=Thus, 01 Jan 1970 00:00:00 GMT

Note: At the moment multiple Set-Cookie in a Response is not handled.

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.

Install it by using deno install

deno install file_server https://deno.land/std/http/file_server.ts --allow-net --allow-read