Skip to content

cshenoy/cookie-monster

 
 

Repository files navigation

cookie-monster

Build Status

NOTE: cookie-monster is a fork of cookie-cutter by substack (James Halliday), which seems to have gone stale.

Set and get cookies in the browser or in node with document.

In your browser code with browserify:

var cookie = require('cookie-monster');
var times = parseInt(cookie.get('times'), 10) || 0;
cookie.set('times', times + 1);

and times will increment every time the page is reloaded.

methods

var cookie = require('cookie-monster');

cookie(document)

Return a new cookie object with .get() and .set() operating on document.

document.cookie should be a non-referentially transparent setter/getter combo like the DOM's variant where assignment with optional path and expiry creates a new cookie in the getter as a key=value pair.

cookie.get(key)

Return the cookie value for key.

cookie.set(key, value, opts={})

Set the cookie at key to value with optional parameters expires and path.

To unset a cookie, use a date in the past, ex: { expires: new Date(0) }

install

With npm do:

npm install cookie-monster

test

With the console do

$ npm test

license

MIT/X11

cookies

cookie-monster

Packages

No packages published

Languages

  • JavaScript 96.6%
  • HTML 3.4%