jotai

Installation
SKILL.md

Jotai

Primitive and flexible state management for React.

Quick Start

Install:

npm install jotai

Basic usage:

import { atom, useAtom } from 'jotai';

const countAtom = atom(0);

function Counter() {
  const [count, setCount] = useAtom(countAtom);
Related skills
Installs
1
GitHub Stars
4
First Seen
Mar 29, 2026