0.1.0 • Published 9 years ago
chocolate-chip v0.1.0
Chocolate Chip
A tiny CommonJS cookie toolkit.
Install
First install Chocolate Chip in your project root.
$ npm install --save chocolate-chipThen include in your module using require().
var cookie = require('chocolate-chip');Use
Set cookie
cookie.set('name', 'value'[, opts]);Options
opts is an object that allows the following options:
end: Maximum cookie age in milliseconds orInfinity. Set as GMTString orDateto specify an end date.path: Path from where the cookie will be readable.domain: Domain from where the cookie will be readablesecure: Cookie only transmitted over secure protocols if set totrue.
Get cookie
cookie.get('name');Remove cookie
cookie.remove('name');Set cookie forever
Shorthand for cookie.set(), sets end to Infinity.
cookie.forever('name', 'value'[, opts]);