deno/std/http
2020-02-10 11:38:48 -05:00
..
testdata change copyrights from 2019 to 2020 (#3733) 2020-01-21 10:01:55 -05:00
cookie.ts remove non-null assertion operator from std (part1) (#3900) 2020-02-07 02:23:38 -05:00
cookie_test.ts remove non-null assertion operator from std (part1) (#3900) 2020-02-07 02:23:38 -05:00
file_server.ts remove non-null assertion operator from std (part1) (#3900) 2020-02-07 02:23:38 -05:00
file_server_test.ts remove non-null assertion operator from std (part2) (#3927) 2020-02-08 14:15:59 -06:00
http_bench.ts feat: Deno.args now does not include script (#3628) 2020-01-09 11:37:01 -07:00
http_status.ts Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
mod.ts feat: Add missing mod.ts files in std (#3509) 2019-12-20 15:21:30 -05:00
racing_server.ts Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
racing_server_test.ts remove non-null assertion operator from std (part1) (#3900) 2020-02-07 02:23:38 -05:00
README.md std/http: allow response body to be string (#3705) 2020-01-17 18:44:35 -05:00
server.ts feat: Support HTTP trailer headers for response (#3938) 2020-02-10 11:38:48 -05:00
server_test.ts feat: Support HTTP trailer headers for response (#3938) 2020-02-10 11:38:48 -05:00

http

import { serve } from "https://deno.land/std/http/server.ts";
const s = serve({ port: 8000 });
console.log("http://localhost:8000/");
for await (const req of s) {
  req.respond({ body: "Hello World\n" });
}

File Server

A small program for serving local files over HTTP

deno --allow-net --allow-read https://deno.land/std/http/file_server.ts
> HTTP server listening on http://0.0.0.0:4500/

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.