JavaScript localStorage

A simple, lightweight JavaScript API for handling browser localStorage, it is easy to pick up and use, has a reasonable footprint 2.08kb(gzipped: 0.97kb), and has no dependencies. It should not interfere with any JavaScript libraries or frameworks.
Old v1 version document preview.
Features:
🚀 Has no dependencies
🌱 Works in all browsers
🔥 Heavily tested
📦 Supports AMD/CommonJS
💥 store.min.js 2.08kb(gzipped: 0.97kb)
Usage
Installed via npm. You will need Node.js
installed on your system.
$ npm install storejs --save
import store from 'storejs';
store('test', 'tank', 1)
Or manually download and link storejs
in your HTML, It can also be downloaded via UNPKG or jsDelivr CDN:
CDN: UNPKG | jsDelivr | Githack | Statically | bundle.run
<script src="https://unpkg.com/storejs/dist/store.js"></script>
<script type="text/javascript">
store('test', 'tank');
</script>
Basic Usage
store(key, data);
store({key: data, key2: data2});
store(key);
store('?key');
store();
store.set(key, data[, overwrite]);
store.set({key: data, key2: data2})
store.get(key[, alt]);
store.get('?key');
store.get('key1', 'key2', 'key3');
store.remove(key);
store.clear();
store.keys();
store.forEach(callback);
store.search(string);
store.len();
store.has(key);
store('test', (key,val) => {
console.log(val)
return [3,4,5]
})
store(['key', 'key2'], (key) => {
console.log('key:', key)
return '逐个更改数据'
})
API
set
Store or delete string data individually store.set(key, data[, overwrite]);
. Same effect store(key, data);
.
store.set('wcj', '1')
store.set('wcj')
get
Get the string data of the key
store.get(key[, alt])
. Same effect store(key)
.
store.get('wcj1')
store('wcj1')
setAll
Bulk storage of multiple string data store.setAll(data[, overwrite])
. Same effect store({key: data, key2: data});
.
store.setAll({
"wcj1": 123,
"wcj2": 345
})
store.setAll(["w1", "w2", "w3"])
getAll 🔫
Get all key/data store.getAll()
. Same effect store()
.
store.getAll()
store()
clear
Clear all key/data. store.clear()
⚠️ Deprecate store(false)
because it is easy to empty the library because of passing in a null value or reporting an error
store.clear()
keys
Return an array of all keys
. store.keys()
.
store.keys()
has
Judge whether it exists, return true/false store.has(key)
.
store.has('w1');
remove
Delete key string data including key store.remove(key)
store.remove('w1');
store('w1', false)
len
Returns the length of the store store.len()
store.len();
forEach
Loop traversal, return false
to end the traversal
store.forEach((k, d) => {
console.log(k, d);
if (k== 3) return false
});
Storage Event
Responding to storage changes with the StorageEvent
if (window.addEventListener) {
window.addEventListener('storage', handleStorage,false);
} else if (window.attachEvent){
window.attachEvent('onstorage', handleStorage);
}
function handleStorage(e) {
if(!e) { e=window.event; }
}
key | String | The named key that was added, removed, or moddified |
oldValue | Any | The previous value(now overwritten), or null if a new item was added |
newValue | Any | The new value, or null if an item was added |
url/uri | String | The page that called the method that triggered this change |
Chained Call
store.set('ad', 234).get('ad')
TODO
Related
- cookiejs 🍪 A simple, lightweight JavaScript API for handling browser cookies , it is easy to pick up and use, has a reasonable footprint(~2kb, gzipped: 0.95kb), and has no dependencies. It should not interfere with any JavaScript libraries or frameworks.
Contributors
As always, thanks to our amazing contributors!
Made with action-contributors.
License
Licensed under the MIT License.