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
- Host: GitHub
- URL: https://github.com/danmindru/storeify
- Owner: danmindru
- License: other
- Created: 2015-05-25T13:19:41.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-05-25T13:28:47.000Z (about 11 years ago)
- Last Synced: 2025-03-24T19:48:47.172Z (about 1 year ago)
- Language: JavaScript
- Size: 113 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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);`