1.0.2 • Published 8 years ago

localstorage-ttl v1.0.2

Weekly downloads
236
License
MIT
Repository
github
Last release
8 years ago

localstorage-ttl

JS module to save data to localstorage with time to live. Data will expire after set time.

Install:

npm install localstorage-ttl --save

Usage:

const ls = require('localstorage-ttl');

ls.set(variable, value, [ttl_ms]);
ls.get(variable);
  • ttl_ms = time to live time in ms.

if ttl_ms is not set it will be without expire date and will be there till user deletes or your other js deletes it.