Skip to content

flamrdevs/ixstore

Repository files navigation

license version size

lucide rocket ixstore

simple state management

lucide code usage

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