Home

Awesome

Codacy Badge All Contributors Build Status Greenkeeper badge License: MIT Known Vulnerabilities FOSSA Status npm type definitions npm

vue-storage-watcher

For Vue3 => https://github.com/dreambo8563/next-vue-storage-watcher

the real reactive watcher for localStorge. I search a few days for a lib to watch the ls, but failed.

you can use this tiny ls wrapper which works well with vue.js.

you can use this as persistent data layer even instead of vuex.

TODO:

Install

npm install vue-storage-watcher --save

Sample

import lsWatcher from 'vue-storage-watcher';

Vue.use(lsWatcher, { prefix: 'myproject_' });

storage type

Options

Methods

this.$ls or this.$ss in Component context for localStorage/sessionStorage Vue.$ls or Vue.$ss in global.

I will list basic api just with ls.

set

this.$ls.set('token', 'abccc');

the value will be saved in storage with the prefix + key and emit the changes to all the subscribers.

you also can give the key an expire duration with the unit of ms

this.$ls.set('token', 'abccc', 3000);

the key will be expried in 3s, you will get null after that.

ttl

ttl will return -1 if one of the following scenarios happen:

else return the remaining lifetime with ms as the unit

this.$ls.ttl('token');

get

this.$ls.get('token', 'default');

get the value with a default return value if it's not existed

keys

this.$ls.keys();

get all keys stored in the storage.

subscribe the key

this.$ls.on('token', callback);

subscribe the key in the storage, will trigger the callback function if any changes happen.

the return value is the handler need to be used to unsubscribe

tricky there is an immediate options as a third args which will trigger cb immediate if set true

this.$ls.on('token', callback, true);

unsubscribe the key

const handler = this.$ls.on('token', cb);
this.$ls.off('token', handler);

please make sure you unsubscribe beforeDestroy the component

remove

this.$ls.remove('token');

remove will delete the key in storage and emit all the subscribers with null value

clear

this.$ls.clear();

delete all the keys with your prefix. and all the subscribers will not receive changes any more

init

this.$ls.init();

init will set all your current localStorge keys into the plugins

and then you can use get and on mehtod to make them reactive

FAQ

import lsWatcher from 'vue-storage-watcher';

Vue.use({ ...lsWatcher }, { prefix: 'myproject_' });

Vue.use({ ...lsWatcher }, { prefix: 'myproject_ss_', storage: 'session' });
// wather polyfill for IE 11
import 'core-js/fn/symbol';
import 'core-js/fn/map';
// wather polyfill for IE 11
import "core-js/fn/symbol"
import "core-js/fn/map"

License

FOSSA Status

Contributors

Thanks goes to these wonderful people (emoji key):

<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --> <!-- prettier-ignore -->
<img src="https://avatars2.githubusercontent.com/u/6948318?v=4" width="100px;" alt="Vincent Guo"/><br /><sub><b>Vincent Guo</b></sub><br />💻 📖 🐛
<!-- ALL-CONTRIBUTORS-LIST:END -->

This project follows the all-contributors specification. Contributions of any kind welcome!