Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 1.47 KB

README.md

File metadata and controls

42 lines (34 loc) · 1.47 KB

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()