0.1.5 • Published 6 months ago

coaction v0.1.5

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

coaction

Node CI npm license

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.

0.1.0

6 months ago

0.1.1

6 months ago

0.1.4

6 months ago

0.1.5

6 months ago

0.0.1

1 year ago