0.1.5 • Published 6 months ago
coaction v0.1.5
coaction
An efficient and flexible state management library for building high-performance, multithreading web applications.
Installation
You can install it via npm, yarn or pnpm.
npm install coaction
Usage
import { create } from 'coaction';
const useStore = create((set) => ({
count: 0,
increment: () => set((state) => state.count++)
}));
Documentation
You can find the documentation here.