1.0.4 • Published 6 years ago

browserstorage-ttl v1.0.4

Weekly downloads
63
License
GPL-3.0
Repository
github
Last release
6 years ago

browserstorage-ttl

Localstorage with time to live / expiry, if expiry is zero uses SessionStorage

Usage

npm install browserstorage-ttl

In your file

import Storage from 'browserstorage-ttl';


Storage.set('key', 'value', 30);  // 30 minutes as ttl
const k = Storage.get('key');
console.log(k); // value

Storage.set('anotherkey', 'anothervalue', 0);  // 0 minutes as ttl, will use sessionStorage
const t = Storage.get('anotherkey');

console.log(t); // anothervalue