coaction
v0.1.5
Published
A sleek JavaScript library designed for high-performance and multithreading web apps.
Downloads
273
Readme
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.