/akasha

Store with Cookie Fallback

Primary LanguageCoffeeScriptMIT LicenseMIT

akasha NPM version Build Status Coverage Status Dependency Status

Cross-browser storage with cookie-based fallback. Inspired by store.js.

Install

$ npm install akasha

Usage

import store from 'akasha';

// Store current user
store.set('user', {name: 'David'})

// Get current user
store.get('user')

// Remove current user
store.remove('user')

// Clear all keys
store.clear()