Getting Started
Install
For vanilla projects:
npm add @kintools/store-coreFor React projects (@kintools/store-core is included):
npm add @kintools/store-reactTo add official plugins:
npm add @kintools/store-pluginsQuick start
Create a store, write plain functions, done:
import { createStore } from "@kintools/store-core";
type TodoState = { todos: string[]; status: "idle" | "loading" };
const store = createStore({ todos: [], status: "idle" } as TodoState);
function addTodo(text: string): void {
store.set((s) => ({ ...s, todos: [...s.todos, text] }));
}
addTodo("Buy groceries");
console.log(store.get());
// { todos: ['Buy groceries'], status: 'idle' }When your app grows, move logic into the store with .use():
import { withPlugins } from "@kintools/store-core";
import { history, persist } from "@kintools/store-plugins";
const store = withPlugins({ todos: [], status: "idle" } as TodoState)
.use("persist", persist({ key: "todos" }))
.use("history", history())
.use({
methods: (store) => ({
addTodo(text: string): void {
store.set((s) => ({ ...s, todos: [...s.todos, text] }));
},
}),
});
store.addTodo("Buy groceries");
store.history.undo();
await store.persist.hydrate();Each .use() adds capability, not a nesting level. The store grows with you.
What's next
- createStore — the minimal foundation
- withPlugins — add methods, reducers, and middleware
- derive — compose stores reactively
- Plugins — persist, history, immer