ixstoragest
v1.0.5
Published
Simple state management with storage
Downloads
6
Readme
simple state management with storage
import ixstoragest from "ixstoragest";
const store = ixstoragest("hello", {
hello: "world",
});
const unsub = store.sub((value) => {
console.log(value);
});
store.get().hello; // world
store.set({ hello: "ixstore" });
// { hello: "ixstore" }
store.get().hello; // ixstore
unsub();
MIT