1.2.3 • Published 7 years ago

cookies-js v1.2.3

Weekly downloads
61,691
License
Public Domain
Repository
github
Last release
7 years ago

Cookies.js

Cookies.js is a small client-side javascript library that makes managing cookies easy.

Features
Browser Compatibility
Getting the Library
Use in CommonJS/Node Environments Without window
A Note About Encoding
API Reference

Features

  • RFC6265 compliant
  • Cross browser
  • Lightweight
  • No dependencies
  • Public domain
  • Supports AMD / CommonJS loaders

Browser Compatibility

The following browsers have passed all of the automated Cookies.js tests:

  • Chrome
  • Firefox 3+
  • Safari 4+
  • Opera 10+
  • Internet Explorer 6+

Getting the Library

Direct downloads

Node Package Manager

npm install cookies-js

Bower

bower install cookies-js

Use in CommonJS/Node Environments Without window

In environments where there is no native window object, Cookies.js will export a factory method that accepts a window instance. For example, using jsdom, you might do something like:

var jsdom = require('jsdom');
var window = jsdom.jsdom().parentWindow;
var Cookies = require('cookies-js')(window);

// Use Cookies as you normally would

A Note About Encoding

RFC6265 defines a strict set of allowed characters for cookie keys and values. In order to effectively allow any character to be used in a key or value, Cookies.js will URI encode disallowed characters in their UTF-8 representation. As such, Cookies.js also expects cookie keys and values to already be URI encoded in a UTF-8 representation when it accesses cookies. Keep this in mind when working with cookies on the server side.

.NET Users

Do not use HttpUtility.UrlEncode and HttpUtility.UrlDecode on cookie keys or values. HttpUtility.UrlEncode will improperly escape space characters to '+' and lower case every escape sequence. HttpUtility.UrlDecode will improperly unescape every '+' to a space character. Instead, use System.Uri.EscapeDataString and System.Uri.UnescapeDataString.

API Reference

Methods
Cookies.set(key, value [, options])
Cookies.get(key)
Cookies.expire(key [, options])

Properties
Cookies.enabled
Cookies.defaults

Methods

Cookies.set(key, value , options)

Alias: Cookies(key, value , options)

Sets a cookie in the document. If the cookie does not already exist, it will be created. Returns the Cookies object.

OptionDescriptionDefault
pathA string value of the path of the cookie"/"
domainA string value of the domain of the cookieundefined
expiresA number (of seconds), a date parsable string, or a Date object of when the cookie will expireundefined
secureA boolean value of whether or not the cookie should only be available over SSLfalse

A default value for any option may be set in the Cookies.defaults object.

Example Usage

// Setting a cookie value
Cookies.set('key', 'value');

// Chaining sets together
Cookies.set('key', 'value').set('hello', 'world');

// Setting cookies with additional options
Cookies.set('key', 'value', { domain: 'www.example.com', secure: true });

// Setting cookies with expiration values
Cookies.set('key', 'value', { expires: 600 }); // Expires in 10 minutes
Cookies.set('key', 'value', { expires: '01/01/2012' });
Cookies.set('key', 'value', { expires: new Date(2012, 0, 1) });
Cookies.set('key', 'value', { expires: Infinity });

// Using the alias
Cookies('key', 'value', { secure: true });

Cookies.get(key)

Alias: Cookies(key)

Returns the value of the most locally scoped cookie with the specified key.

Example Usage

// First set a cookie
Cookies.set('key', 'value');

// Get the cookie value
Cookies.get('key'); // "value"

// Using the alias
Cookies('key'); // "value"

Cookies.expire(key , options)

Alias: Cookies(key, undefined , options)

Expires a cookie, removing it from the document. Returns the Cookies object.

OptionDescriptionDefault
pathA string value of the path of the cookie"/"
domainA string value of the domain of the cookieundefined

A default value for any option may be set in the Cookies.defaults object.

Example Usage

// First set a cookie and get its value
Cookies.set('key', 'value').get('key'); // "value"

// Expire the cookie and try to get its value
Cookies.expire('key').get('key'); // undefined

// Using the alias
Cookies('key', undefined);

Properties

Cookies.enabled

A boolean value of whether or not the browser has cookies enabled.

Example Usage

if (Cookies.enabled) {
    Cookies.set('key', 'value');
}

Cookies.defaults

An object representing default options to be used when setting and expiring cookie values.

OptionDescriptionDefault
pathA string value of the path of the cookie"/"
domainA string value of the domain of the cookieundefined
expiresA number (of seconds), a date parsable string, or a Date object of when the cookie will expireundefined
secureA boolean value of whether or not the cookie should only be available over SSLfalse

Example Usage

Cookies.defaults = {
    path: '/',
    secure: true
};

Cookies.set('key', 'value'); // Will be secure and have a path of '/'
Cookies.expire('key'); // Will expire the cookie with a path of '/'
ad-ui-requestad-requesthometown.in@area-vr/pwa@weblake.io/pwa@infinitebrahmanuniverse/nolb-coo@everything-registry/sub-chunk-1379@ardhimas/react-smartbanner@tech_userreport.com/tag-system-mech-cookie@wicked_query/ultimatejs@zalastax/nolb-cooautochart-trackerapollo-auth-toolsbackend-uibackbone.simple-authasynccompaztech-mountain@buildo/bentobuildo-toctocm-clt-vkmmarty-libdash-jsming-demo1ming-demo2ming-demo3decider-webchatchkui-sitecoachmark-react-rrmozu-adminui-core-utilmobiousnextjs-redux-pwa-boilerplatenode-django-csrf-supportnodecgmirrorstoredealstarterderby-cookie-trackerdashboard-systemmeili-clientparse-jwtqgoweb-frameworkyxywebwebpages@swirl/ng-admin@tinper/next-sharechariotep-requestrr-coachmarkrr-mobile-coachmarkrr-mobile-coachmark2emp-ebooks-readerredux-persist-async-cookie-storageredux-persist-cookies-adapterrhizome-server@highoutput/hovui-providersafe-fetchespykxx-utilsfervorsignalerjssimetric-store-plugin@ifcloud/core@ifcloud/utilsreact-x-keychainreact-smartbannerreact-smartbanner-bmp@flowio/beacon-javascriptreaction-baseosh-pagesreact-admin-componentsreact-panoplyesnextbinsales-hero-appformhelper-peer-iframe@jaxolotl/wdclib@kanikarp/react-scriptssocketio-session-redisgalway-viewergb-tracker-client@konradkierus/react-smartbannergigcodes-uigithuboauth@needish/qoopit-ui-componentsthaumoctopus-mimicusstargatejssynchro-webhanzo-analyticstenontenon-basetenon-componentstenon-featurestrack.js@metaphi/airwallettest-appbridgeimprimaturjsiceworks-clientisomorphic-flux-boilerplateuspace-api-client@plainly.world/pwavk-appbridge
1.2.3

7 years ago

1.2.2

9 years ago

1.2.1

9 years ago

1.2.0

9 years ago

1.1.0

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago

0.4.0

10 years ago

0.3.1

11 years ago