koekje
Koekje is dutch for cookie
and it's also DOM Storage API compatible storage
layer for storing data in a... cookie.
Installation
This module was designed with browserify in mind and can be installed from the
public npm registry:
npm install --save koekje
Usage
In all examples we assume that you've required the module as:
'use strict';
var koekje = require('koekje');
The API is we expose is compatible with the API of the DOM Storage methods. They
can be found at:
https://developer.mozilla.org/en-US/docs/Web/API/Storage
koekje.setItem('foo', 'bar');
koekje.getItem('bar');
koekje.getItem('foo');
koekje.length;
koekje.removeItem('foo');
koekje.clear();
License
MIT