locastore
v2.0.1
Published
A localStorage wrapper that falls back to memory in private browsing mode.
Downloads
733
Maintainers
Readme
locastore
A localStorage wrapper that falls back to memory in private browsing mode.
install
npm install locastore
use
const store = require('locastore')()
OR
import Locastore from "locastore"
const store = new Locastore()
api
var store = new Locastore([namespace])
namespace
is a string to prefix to each key.
store.get(key)
Retrieve a key. If localStorage.getItem()
fails, falls back to memory store.
store.set(key, value)
Store a key in memory and with localStorage.setItem()
.
store.delete(key)
Removes a key from memory and localStorage.removeItem()
.
store.clear()
Removes all items from memory and localStorage within the namespace.
Locastore.clear()
Removes all items from memory and localStorage.
similar projects
- local-store A localStorage based store with name spacing
- local-storage A simplified localStorage API that just works
license
(c) 2023 Kyle Robinson Young. MIT License