Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/flamrdevs/ixstore

simple state management
https://github.com/flamrdevs/ixstore

npm store

Last synced: 3 months ago
JSON representation

simple state management

Awesome Lists containing this project

README

        





license





version





size





lucide rocket


ixstore

simple state management




lucide code


usage

```ts
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();
```




lucide scale


license

MIT