zustand

Installation
SKILL.md

Zustand

Small, fast, and scalable state management using simplified flux principles.

Quick Start

Install:

npm install zustand

Create a store:

import { create } from 'zustand';

interface BearStore {
  bears: number;
  increase: () => void;
  decrease: () => void;
Related skills
Installs
1
GitHub Stars
4
First Seen
Mar 29, 2026