All Projects → theodorejb → es-cookie

theodorejb / es-cookie

Licence: MIT license
A simple, lightweight module for handling cookies

Programming Languages

typescript
32286 projects
HTML
75241 projects

Projects that are alternatives of or similar to es-cookie

Neural-Plot-Development
A Library for visualizing Neural Networks of the TensorFlow/Keras models.
Stars: ✭ 16 (-55.56%)
Mutual labels:  module
MCM2017
MCM 2017
Stars: ✭ 17 (-52.78%)
Mutual labels:  module
cisco ios
Cisco IOS Catalyst module
Stars: ✭ 14 (-61.11%)
Mutual labels:  module
duckpy
A simple Python library for searching on DuckDuckGo.
Stars: ✭ 20 (-44.44%)
Mutual labels:  module
fastlane-plugin-create xcframework
Fastlane plugin that creates xcframework for given list of destinations 🚀
Stars: ✭ 58 (+61.11%)
Mutual labels:  module
go-checksum
Simple tool to calc Golang module checksum of go.mod and module dir.
Stars: ✭ 45 (+25%)
Mutual labels:  module
psr7-cookies
🍪 bakes cookies for PSR-7 messages
Stars: ✭ 35 (-2.78%)
Mutual labels:  cookies
useCookie
A React hook for managing cookies with no dependencies.
Stars: ✭ 119 (+230.56%)
Mutual labels:  cookies
terraform-lambda-fixed-ip
Provide a fixed IP (ElasticIP) to your AWS Lambdas
Stars: ✭ 20 (-44.44%)
Mutual labels:  module
terraform-remote-state
A Terraform module that configures an s3 bucket for use with Terraform's remote state feature
Stars: ✭ 21 (-41.67%)
Mutual labels:  module
ngx-image-drawing
Angular module to draw on images
Stars: ✭ 42 (+16.67%)
Mutual labels:  module
Tomcat-Webmin-Module
Apache Tomcat Plugin for Webmin
Stars: ✭ 19 (-47.22%)
Mutual labels:  module
KaufmannDigital.GDPR.CookieConsent
A ready-to-run package, that integrates an advanced cookie consent banner into your Neos CMS site.
Stars: ✭ 21 (-41.67%)
Mutual labels:  cookies
twbs-helper-module
Laminas (formerly Zend Framework) module for easy integration of Twitter Bootstrap
Stars: ✭ 18 (-50%)
Mutual labels:  module
cookies
Convenient way to use cookies with PSR-7
Stars: ✭ 17 (-52.78%)
Mutual labels:  cookies
icingaweb2-module-pdfexport
PDF export functionality for Icinga Web 2
Stars: ✭ 27 (-25%)
Mutual labels:  module
i3blocks-crypto
💵 View your favorite coins' ticker prices with i3blocks.
Stars: ✭ 30 (-16.67%)
Mutual labels:  module
PowerShell-Troll
A PowerShell module that contains different functions that can be used for pranking your fellow co-worker or anyone else for that matter.
Stars: ✭ 52 (+44.44%)
Mutual labels:  module
damb
An advanced module builder for Dolibarr ERP/CRM
Stars: ✭ 14 (-61.11%)
Mutual labels:  module
glitchify
Tweaks for the official twitch.tv android app
Stars: ✭ 33 (-8.33%)
Mutual labels:  module

es-cookie

NPM version

A simple, lightweight module for handling cookies

  • Includes TypeScript definitions
  • Works with Webpack, Rollup, and Browserify module bundlers
  • No dependencies
  • Originally based on js-cookie, but rewritten as a TypeScript module with a lean, type-safe API

Installation

npm install es-cookie --save

Usage

Import entire module:

import * as Cookies from 'es-cookie';

Cookies.set('name', 'value');
Cookies.get('name'); // => 'value'

Alternatively, just import the functions you need:

import {set as setCookie, get as getCookie} from 'es-cookie';

setCookie('name', 'value');
getCookie('name'); // => 'value'

Create a cookie that expires 7 days from now, valid across the entire site:

Cookies.set('name', 'value', { expires: 7 });

Functions

set

Creates a new cookie. The first parameter is for the name, and the second for the value. The third parameter is optional and allows you to modify attributes for the new cookie (see the Attributes section below).

// Create an expiring cookie, valid to the path of the current page:
Cookies.set('name', 'value', { expires: 7, path: '' });

get

Returns a single cookie with the specified name, or undefined if the cookie doesn't exist.

Cookies.get('name'); // => 'value'
Cookies.get('nothing'); // => undefined

getAll

Returns an object containing all visible cookies.

Cookies.getAll(); // => { name: 'value' }

remove

Deletes a single cookie by name.

Cookies.remove('name');

IMPORTANT! When removing a cookie, you must pass the exact same path and domain attributes that were used to set the cookie, unless you're using the default attributes.

Cookies.set('name', 'value', { path: '' });
Cookies.remove('name'); // fail!
Cookies.remove('name', { path: '' }); // removed!

Note: Removing a nonexistent cookie does not raise an exception or return a value.

parse

Parses a cookie string (e.g. document.cookie) and returns the names/values as an object.

Cookies.parse('c=v; name=value'); // => {c: 'v', name: 'value'}

encode

Takes a name, value, and attributes object and returns an encoded string which can be used to create a new cookie.

Cookies.encode('c', 'v', {secure: true}); // => 'c=v; Secure'

Attributes

expires

Define when the cookie will be removed. Value can be a number which will be interpreted as days from time of creation or a Date instance. If omitted, the cookie becomes a session cookie.

To create a cookie that expires in less than a day, use a Date object.

Default: Cookie is removed when the user closes the browser.

Examples:

Cookies.set('name', 'value', { expires: 365 });
Cookies.get('name'); // => 'value'
Cookies.remove('name');

let twoHoursFromNow = new Date();
twoHoursFromNow.setHours(twoHoursFromNow.getHours() + 2);
Cookies.set('name', 'value', { expires: twoHoursFromNow });

path

A string indicating the path where the cookie is visible.

Default: /

Examples:

Cookies.set('name', 'value', { path: '' });
Cookies.get('name'); // => 'value'
Cookies.remove('name', { path: '' });

domain

A string indicating a valid domain where the cookie should be visible. The cookie will also be visible to all subdomains.

Default: Cookie is visible only to the domain or subdomain of the page where the cookie was created.

Examples:

Assuming a cookie that is being created on site.com:

Cookies.set('name', 'value', { domain: 'subdomain.site.com' });
Cookies.get('name'); // => undefined (need to read at 'subdomain.site.com')

secure

Either true or false, indicating if the cookie transmission requires a secure protocol (https).

Default: No secure protocol requirement.

Examples:

Cookies.set('name', 'value', { secure: true });
Cookies.get('name'); // => 'value'
Cookies.remove('name');

sameSite

A string with a value of either strict, lax, or none. When enabled, supporting browsers will only send the cookie if the request originates from the same website the cookie is from. This provides some protection against cross-site request forgery attacks (CSRF).

The strict mode withholds the cookie from any kind of cross-site usage (including inbound links from external sites). The lax mode withholds the cookie on cross-domain subrequests (e.g. images or frames), but sends it whenever a user navigates safely from an external site (e.g. by following a link).

Default: No same-site requirement is set - the browser default will be used.

Examples:

Cookies.set('name', 'value', { sameSite: 'strict' });
Cookies.set('other', 'value', { sameSite: 'lax' });

Encoding

Special characters that are not permitted in the cookie name (";" and "=") or cookie value (";") are encoded with their UTF-8 Hex equivalent using percent-encoding.

Author

Theodore Brown
https://theodorejb.me

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].