window.name
A DOM Storage API compatible storage layer for storing data in the window.name
property.
Installation
This module was designed with browserify in mind and can be installed from the
public npm registry:
npm install --save window.name
Usage
In all examples we assume that you've required the module as:
'use strict';
var windowStorage = require('window.name');
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
windowStorage.setItem('foo', 'bar');
windowStorage.getItem('bar');
windowStorage.getItem('foo');
windowStorage.length;
windowStorage.removeItem('foo');
widnowStorage.clear();
License
MIT