jotai
Primitive, flexible state management for React.
Jotai is pronounced "joe-tie" and means "state" in Japanese.
How does Jotai differ from Recoil?
- Minimalistic API
- No string keys
- TypeScript oriented
An atom represents a piece of state. All you need is to specify an initial value, which can be primitive values like strings and numbers, objects and arrays. You can create as many primitive atoms as you want.
You can only use atoms under this component tree.
It can be used just like React.useState
:
A new read-only atom can be created from existing atoms by passing a read function as the first argument. get
allows you to fetch the contextual value of any atom.
You can combine multiple atoms to create a derived atom.
Or if you like fp patterns ...
You can make the read function an async function, too.
Specify a write function at the second argument. get
will return the current value of an atom, set
will update an atoms value.
Just do not define a read function.
Just make the write function an async function and call set
when you're ready.