1.0.11 • Published 5 years ago

lc-project-storage v1.0.11

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

lc-project-storage

A project storage base on localStorage.

usage

When you use localStorage, you will face these problems: 1. Data stored in localStorage can be last forever until user clean browser data. That can be a problem if website allocate too much space. So this package can arrange space of each project(or website). It include a expired argument(default one day) for cleaning data. So the data in localStorage won't last forever. 2. Every time you fetch or update localStorage value can be very annoying. You need to getItem by name and JSON.parse the value and so on. So this package do this job for you.

import ProjectStorage = require('lc-project-storage');
const projectStorage = new ProjectStorage({
    projectName: 'LazyCoffee', //give an awesome name
    cleanDataAfter: 3600*24*7, //a week, default is 3600*24
    version: 1, // it will clean your data when you update this version number
    defaultValue: {},
});
// just set value, it will automatic save into localStorage
projectStorage.value = ['1', '2']; //easily store data
projectStorage.value = {a: 'b'}; //change it whenever you want
console.log(projectStorage.value); //easily get value from localStorage
projectStorage.value = undefined; //cleaning data is simple

Only tested in TypeScript.

License

MIT

1.0.11

5 years ago

1.0.10

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago