Skip to main content
Module

x/faster/deps.ts>getSetCookies

A fast and optimized middleware server with an absurdly small amount of code (300 lines) built on top of Deno's native HTTP APIs with no dependencies. It also has a collection of useful middlewares: log file, serve static, CORS, session, rate limit, token, body parsers, redirect, proxy and handle upload. In "README" there are examples of all the resources. Faster's ideology is: all you need is an optimized middleware manager, all other functionality is middleware.
Go to Latest
function getSetCookies
import { getSetCookies } from "https://deno.land/x/faster@v7.4/deps.ts";

Parse set-cookies of a header

Examples

Example 1

import { getSetCookies } from "https://deno.land/std@0.224.0/http/cookie.ts";

const headers = new Headers([
  ["Set-Cookie", "lulu=meow; Secure; Max-Age=3600"],
  ["Set-Cookie", "booya=kasha; HttpOnly; Path=/"],
]);

const cookies = getSetCookies(headers);
console.log(cookies); // [{ name: "lulu", value: "meow", secure: true, maxAge: 3600 }, { name: "booya", value: "kahsa", httpOnly: true, path: "/ }]

Parameters

headers: Headers

The headers instance to get set-cookies from

Returns

List of cookies