1.0.3 • Published 5 years ago

storage-exp v1.0.3

Weekly downloads
3
License
ISC
Repository
github
Last release
5 years ago

Storage

localStorage with max-age 封装了localStorage,使之像redis那样拥有过期时间

install

npm i storage-exp -S

method

import Storage from 'storage-exp';

async function test() {
  await Storage.set({
    key: 'demo',
    value: {a:'haha'},
    age: 60 // seconds, default is forever, 0 is immediately delete,
  });
  
  const data = await Storage.get('demo');
}
1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago