1.0.5 • Published 8 months ago

ixstore v1.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

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

1.0.5

8 months ago

1.0.4

10 months ago

1.0.3

10 months ago

1.0.2

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago

1.0.0-1

10 months ago

1.0.0-0

10 months ago