localcacher
v1.0.0
Published
Localcacher allows you to cache data in localstorage with a TTL
Downloads
2
Maintainers
Readme
Localcacher
Localcacher allows you to cache data in localstorage with a TTL
How to use
Vanilla JS
<script type="module">import {localCacher} from "./you-path-to-localcacher/index.js";
Get Items
const value = localCacher().getItem("key");
Set item
localCacher().setItem("key", "value",ttl);