superstore

2.1.0 • Public • Published

superstore Build Status

Superstore is a simple lightweight asynchronous wrapper around the Web Storage APIs localStorage and sessionStorage. Its features include:

If you require an synchronous version please use superstore-sync instead.

Installation

npm

npm install superstore --save

bower

bower superstore --save

api

Superstore is an instantiable module. All Superstore methods return a Promise which will resolve with the stored value. Its methods are:

constructor (type, namespace)

var localStore = new Superstore('local', 'foo');
var sessionStore = new Superstore('session', 'bar');

#get(key)

#set(key, value)

#unset(key)

#clear()

Superstore.isPersisting()

returns a boolean set to true if data is being persisted to storage, or false if it is being kept in memory (e.g. if localStorage is full or inaccessible).

Example usage

var Superstore = require('superstore');
var store = new Superstore('local', 'foo');
 
store.get('bar').then(function(value){
  // Do something with value
});

/superstore/

    Package Sidebar

    Install

    npm i superstore

    Weekly Downloads

    69

    Version

    2.1.0

    License

    MIT

    Last publish

    Collaborators

    • financial-times
    • ftlabs
    • kornel
    • mattandrews