An open API service indexing awesome lists of open source software.

https://github.com/danmindru/storeify

Browserify wrapper for simple local storage w/ cookie fallback
https://github.com/danmindru/storeify

Last synced: 9 months ago
JSON representation

Browserify wrapper for simple local storage w/ cookie fallback

Awesome Lists containing this project

README

          

## Storeify
Browserify wrapper for simple local storage w/ cookie fallback

Source: [this gist](https://gist.github.com/Fluidbyte/4718380)

## API
**Set New / Modify:**

`store('my_key', 'some_value');`

**Retrieve:**

`store('my_key');`

**Delete / Remove:**

`store('my_key', null);`