akasha

Cross-browser storage with cookie-based fallback. Inspired by [store.js](https://github.com/marcuswestin/store.js/).

Usage no npm install needed!

<script type="module">
  import akasha from 'https://cdn.skypack.dev/akasha';
</script>

README

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