ixstore
v1.0.5
Published
Simple state management
Downloads
6
Readme
simple state management
import ixstore from "ixstore";
const store = ixstore({
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