zustand vs jotai vs @nanostores/react vs @hookstate/core
State Management Libraries for React Comparison
1 Year
zustandjotai@nanostores/react@hookstate/coreSimilar Packages:
What's State Management Libraries for React?

State management libraries are essential in React applications to handle the state of components efficiently, especially as applications grow in complexity. They provide mechanisms to manage, share, and synchronize state across components, improving performance and maintainability. Each library has its unique approach to state management, offering different features, performance characteristics, and ease of use. Choosing the right library can significantly impact the development experience and application performance.

Package Weekly Downloads Trend
Github Stars Ranking
Stat Detail
Package
Downloads
Stars
Size
Issues
Publish
License
zustand8,514,02853,45091.8 kB516 days agoMIT
jotai1,806,98720,196500 kB62 months agoMIT
@nanostores/react87,7331104.86 kB33 months agoMIT
@hookstate/core70,6141,660498 kB314 months agoMIT
Feature Comparison: zustand vs jotai vs @nanostores/react vs @hookstate/core

Reactivity

  • zustand:

    Zustand provides a simple and efficient way to manage state with a reactive approach. It allows components to subscribe to specific slices of the state, ensuring that only the necessary components re-render when the state changes.

  • jotai:

    Jotai uses an atomic state model where each piece of state is independent. This allows for selective re-renders, meaning only components that depend on a specific atom will re-render when that atom's state changes, enhancing performance and modularity.

  • @nanostores/react:

    @nanostores/react offers a reactive store model that updates components automatically when the store changes. It emphasizes simplicity and performance, making it easy to integrate into existing applications without significant overhead.

  • @hookstate/core:

    @hookstate/core provides a fine-grained reactivity model that allows components to re-render only when the specific state they depend on changes. This leads to optimal performance, especially in large applications with complex state structures.

API Design

  • zustand:

    Zustand's API is designed to be simple and flexible, allowing for quick setup and easy integration into existing applications. It provides a straightforward way to create stores and manage state without unnecessary complexity.

  • jotai:

    Jotai offers a straightforward API that revolves around atoms, making it easy to create and manage state. Its design encourages composability and modularity, allowing developers to build complex state management solutions with ease.

  • @nanostores/react:

    @nanostores/react has a minimalistic API that focuses on simplicity and ease of use. It allows developers to create stores with minimal setup, making it accessible for beginners and efficient for experienced developers.

  • @hookstate/core:

    @hookstate/core features a declarative API that integrates seamlessly with React's hooks. It allows for easy state management without the need for complex boilerplate code, making it intuitive for developers to use.

Performance

  • zustand:

    Zustand is lightweight and performs well due to its simple subscription model. It allows components to subscribe to specific parts of the state, ensuring that only the necessary components re-render, which enhances performance.

  • jotai:

    Jotai's atomic state management allows for efficient updates and re-renders, as only the components that depend on a specific atom will re-render when that atom changes. This leads to improved performance in applications with complex state dependencies.

  • @nanostores/react:

    @nanostores/react is designed for high performance with minimal overhead. Its reactive model ensures that updates are efficient, making it suitable for applications that require fast state updates and rendering.

  • @hookstate/core:

    @hookstate/core is optimized for performance with its fine-grained reactivity, minimizing unnecessary re-renders and improving the overall efficiency of the application. It is particularly effective in scenarios with frequent state updates.

Learning Curve

  • zustand:

    Zustand is designed to be easy to learn and use, with a simple API that allows developers to get started quickly. Its straightforward approach makes it accessible for developers of all skill levels.

  • jotai:

    Jotai has a gentle learning curve, especially for those familiar with React. Its atomic approach simplifies state management, allowing developers to quickly understand and implement state management in their applications.

  • @nanostores/react:

    @nanostores/react is very easy to learn due to its minimalistic design and straightforward API. Developers can quickly get started without needing to understand complex concepts, making it ideal for beginners.

  • @hookstate/core:

    @hookstate/core has a moderate learning curve, especially for developers familiar with React hooks. Its declarative approach makes it easier to grasp, but understanding its advanced features may take some time.

Community and Ecosystem

  • zustand:

    Zustand has a strong community and is part of the broader React ecosystem. It is well-documented, and its simplicity has led to a variety of third-party integrations and resources, making it easy for developers to find help and examples.

  • jotai:

    Jotai has gained popularity quickly and has a vibrant community. It benefits from active development and a growing number of plugins and integrations, making it a solid choice for developers looking for community support.

  • @nanostores/react:

    @nanostores/react is relatively new but has a supportive community and good documentation. Its simplicity encourages adoption, and as it grows, more resources and integrations are likely to emerge.

  • @hookstate/core:

    @hookstate/core has a growing community and ecosystem, with increasing resources and documentation available. However, it may not be as widely adopted as some other libraries, which can affect the availability of third-party integrations.

How to Choose: zustand vs jotai vs @nanostores/react vs @hookstate/core
  • zustand:

    Choose zustand if you are looking for a lightweight and flexible state management solution that is easy to set up and use. It is particularly effective for applications that need a simple store with minimal boilerplate and supports both local and global state management.

  • jotai:

    Select jotai if you want a simple, atomic state management library that allows for fine-grained control over state updates. It is suitable for applications that require a straightforward API and a focus on composability, making it easy to manage state in a modular way.

  • @nanostores/react:

    Opt for @nanostores/react if you prefer a minimalistic approach to state management with a focus on simplicity and performance. It is ideal for small to medium-sized applications where you want to avoid the complexity of larger libraries while still having a reactive state management solution.

  • @hookstate/core:

    Choose @hookstate/core if you need a highly performant and flexible state management solution that supports both local and global state management with minimal boilerplate. It is particularly useful for applications that require fine-grained reactivity and performance optimizations.

README for zustand

Build Status Build Size Version Downloads Discord Shield

A small, fast and scalable bearbones state-management solution using simplified flux principles. Has a comfy API based on hooks, isn't boilerplatey or opinionated.

Don't disregard it because it's cute. It has quite the claws, lots of time was spent dealing with common pitfalls, like the dreaded zombie child problem, react concurrency, and context loss between mixed renderers. It may be the one state-manager in the React space that gets all of these right.

You can try a live demo and read the docs.

npm install zustand

:warning: This readme is written for JavaScript users. If you are a TypeScript user, be sure to check out our TypeScript Usage section.

First create a store

Your store is a hook! You can put anything in it: primitives, objects, functions. State has to be updated immutably and the set function merges state to help it.

import { create } from 'zustand'

const useBearStore = create((set) => ({
  bears: 0,
  increasePopulation: () => set((state) => ({ bears: state.bears + 1 })),
  removeAllBears: () => set({ bears: 0 }),
}))

Then bind your components, and that's it!

Use the hook anywhere, no providers are needed. Select your state and the component will re-render on changes.

function BearCounter() {
  const bears = useBearStore((state) => state.bears)
  return <h1>{bears} around here ...</h1>
}

function Controls() {
  const increasePopulation = useBearStore((state) => state.increasePopulation)
  return <button onClick={increasePopulation}>one up</button>
}

Why zustand over redux?

Why zustand over context?

  • Less boilerplate
  • Renders components only on changes
  • Centralized, action-based state management

Recipes

Fetching everything

You can, but bear in mind that it will cause the component to update on every state change!

const state = useBearStore()

Selecting multiple state slices

It detects changes with strict-equality (old === new) by default, this is efficient for atomic state picks.

const nuts = useBearStore((state) => state.nuts)
const honey = useBearStore((state) => state.honey)

If you want to construct a single object with multiple state-picks inside, similar to redux's mapStateToProps, you can use useShallow to prevent unnecessary rerenders when the selector output does not change according to shallow equal.

import { create } from 'zustand'
import { useShallow } from 'zustand/react/shallow'

const useBearStore = create((set) => ({
  nuts: 0,
  honey: 0,
  treats: {},
  // ...
}))

// Object pick, re-renders the component when either state.nuts or state.honey change
const { nuts, honey } = useBearStore(
  useShallow((state) => ({ nuts: state.nuts, honey: state.honey })),
)

// Array pick, re-renders the component when either state.nuts or state.honey change
const [nuts, honey] = useBearStore(
  useShallow((state) => [state.nuts, state.honey]),
)

// Mapped picks, re-renders the component when state.treats changes in order, count or keys
const treats = useBearStore(useShallow((state) => Object.keys(state.treats)))

For more control over re-rendering, you may provide any custom equality function (this example requires the use of createWithEqualityFn).

const treats = useBearStore(
  (state) => state.treats,
  (oldTreats, newTreats) => compare(oldTreats, newTreats),
)

Overwriting state

The set function has a second argument, false by default. Instead of merging, it will replace the state model. Be careful not to wipe out parts you rely on, like actions.

const useFishStore = create((set) => ({
  salmon: 1,
  tuna: 2,
  deleteEverything: () => set({}, true), // clears the entire store, actions included
  deleteTuna: () => set(({ tuna, ...rest }) => rest, true),
}))

Async actions

Just call set when you're ready, zustand doesn't care if your actions are async or not.

const useFishStore = create((set) => ({
  fishies: {},
  fetch: async (pond) => {
    const response = await fetch(pond)
    set({ fishies: await response.json() })
  },
}))

Read from state in actions

set allows fn-updates set(state => result), but you still have access to state outside of it through get.

const useSoundStore = create((set, get) => ({
  sound: 'grunt',
  action: () => {
    const sound = get().sound
    ...

Reading/writing state and reacting to changes outside of components

Sometimes you need to access state in a non-reactive way or act upon the store. For these cases, the resulting hook has utility functions attached to its prototype.

:warning: This technique is not recommended for adding state in React Server Components (typically in Next.js 13 and above). It can lead to unexpected bugs and privacy issues for your users. For more details, see #2200.

const useDogStore = create(() => ({ paw: true, snout: true, fur: true }))

// Getting non-reactive fresh state
const paw = useDogStore.getState().paw
// Listening to all changes, fires synchronously on every change
const unsub1 = useDogStore.subscribe(console.log)
// Updating state, will trigger listeners
useDogStore.setState({ paw: false })
// Unsubscribe listeners
unsub1()

// You can of course use the hook as you always would
function Component() {
  const paw = useDogStore((state) => state.paw)
  ...

Using subscribe with selector

If you need to subscribe with a selector, subscribeWithSelector middleware will help.

With this middleware subscribe accepts an additional signature:

subscribe(selector, callback, options?: { equalityFn, fireImmediately }): Unsubscribe
import { subscribeWithSelector } from 'zustand/middleware'
const useDogStore = create(
  subscribeWithSelector(() => ({ paw: true, snout: true, fur: true })),
)

// Listening to selected changes, in this case when "paw" changes
const unsub2 = useDogStore.subscribe((state) => state.paw, console.log)
// Subscribe also exposes the previous value
const unsub3 = useDogStore.subscribe(
  (state) => state.paw,
  (paw, previousPaw) => console.log(paw, previousPaw),
)
// Subscribe also supports an optional equality function
const unsub4 = useDogStore.subscribe(
  (state) => [state.paw, state.fur],
  console.log,
  { equalityFn: shallow },
)
// Subscribe and fire immediately
const unsub5 = useDogStore.subscribe((state) => state.paw, console.log, {
  fireImmediately: true,
})

Using zustand without React

Zustand core can be imported and used without the React dependency. The only difference is that the create function does not return a hook, but the API utilities.

import { createStore } from 'zustand/vanilla'

const store = createStore((set) => ...)
const { getState, setState, subscribe, getInitialState } = store

export default store

You can use a vanilla store with useStore hook available since v4.

import { useStore } from 'zustand'
import { vanillaStore } from './vanillaStore'

const useBoundStore = (selector) => useStore(vanillaStore, selector)

:warning: Note that middlewares that modify set or get are not applied to getState and setState.

Transient updates (for often occurring state-changes)

The subscribe function allows components to bind to a state-portion without forcing re-render on changes. Best combine it with useEffect for automatic unsubscribe on unmount. This can make a drastic performance impact when you are allowed to mutate the view directly.

const useScratchStore = create((set) => ({ scratches: 0, ... }))

const Component = () => {
  // Fetch initial state
  const scratchRef = useRef(useScratchStore.getState().scratches)
  // Connect to the store on mount, disconnect on unmount, catch state-changes in a reference
  useEffect(() => useScratchStore.subscribe(
    state => (scratchRef.current = state.scratches)
  ), [])
  ...

Sick of reducers and changing nested states? Use Immer!

Reducing nested structures is tiresome. Have you tried immer?

import { produce } from 'immer'

const useLushStore = create((set) => ({
  lush: { forest: { contains: { a: 'bear' } } },
  clearForest: () =>
    set(
      produce((state) => {
        state.lush.forest.contains = null
      }),
    ),
}))

const clearForest = useLushStore((state) => state.clearForest)
clearForest()

Alternatively, there are some other solutions.

Persist middleware

You can persist your store's data using any kind of storage.

import { create } from 'zustand'
import { persist, createJSONStorage } from 'zustand/middleware'

const useFishStore = create(
  persist(
    (set, get) => ({
      fishes: 0,
      addAFish: () => set({ fishes: get().fishes + 1 }),
    }),
    {
      name: 'food-storage', // name of the item in the storage (must be unique)
      storage: createJSONStorage(() => sessionStorage), // (optional) by default, 'localStorage' is used
    },
  ),
)

See the full documentation for this middleware.

Immer middleware

Immer is available as middleware too.

import { create } from 'zustand'
import { immer } from 'zustand/middleware/immer'

const useBeeStore = create(
  immer((set) => ({
    bees: 0,
    addBees: (by) =>
      set((state) => {
        state.bees += by
      }),
  })),
)

Can't live without redux-like reducers and action types?

const types = { increase: 'INCREASE', decrease: 'DECREASE' }

const reducer = (state, { type, by = 1 }) => {
  switch (type) {
    case types.increase:
      return { grumpiness: state.grumpiness + by }
    case types.decrease:
      return { grumpiness: state.grumpiness - by }
  }
}

const useGrumpyStore = create((set) => ({
  grumpiness: 0,
  dispatch: (args) => set((state) => reducer(state, args)),
}))

const dispatch = useGrumpyStore((state) => state.dispatch)
dispatch({ type: types.increase, by: 2 })

Or, just use our redux-middleware. It wires up your main-reducer, sets the initial state, and adds a dispatch function to the state itself and the vanilla API.

import { redux } from 'zustand/middleware'

const useGrumpyStore = create(redux(reducer, initialState))

Redux devtools

Install the Redux DevTools Chrome extension to use the devtools middleware.

import { devtools } from 'zustand/middleware'

// Usage with a plain action store, it will log actions as "setState"
const usePlainStore = create(devtools((set) => ...))
// Usage with a redux store, it will log full action types
const useReduxStore = create(devtools(redux(reducer, initialState)))

One redux devtools connection for multiple stores

import { devtools } from 'zustand/middleware'

// Usage with a plain action store, it will log actions as "setState"
const usePlainStore1 = create(devtools((set) => ..., { name, store: storeName1 }))
const usePlainStore2 = create(devtools((set) => ..., { name, store: storeName2 }))
// Usage with a redux store, it will log full action types
const useReduxStore1 = create(devtools(redux(reducer, initialState)), { name, store: storeName3 })
const useReduxStore2 = create(devtools(redux(reducer, initialState)), { name, store: storeName4 })

Assigning different connection names will separate stores in redux devtools. This also helps group different stores into separate redux devtools connections.

devtools takes the store function as its first argument, optionally you can name the store or configure serialize options with a second argument.

Name store: devtools(..., {name: "MyStore"}), which will create a separate instance named "MyStore" in the devtools.

Serialize options: devtools(..., { serialize: { options: true } }).

Logging Actions

devtools will only log actions from each separated store unlike in a typical combined reducers redux store. See an approach to combining stores https://github.com/pmndrs/zustand/issues/163

You can log a specific action type for each set function by passing a third parameter:

const useBearStore = create(devtools((set) => ({
  ...
  eatFish: () => set(
    (prev) => ({ fishes: prev.fishes > 1 ? prev.fishes - 1 : 0 }),
    undefined,
    'bear/eatFish'
  ),
  ...

You can also log the action's type along with its payload:

  ...
  addFishes: (count) => set(
    (prev) => ({ fishes: prev.fishes + count }),
    undefined,
    { type: 'bear/addFishes', count, }
  ),
  ...

If an action type is not provided, it is defaulted to "anonymous". You can customize this default value by providing an anonymousActionType parameter:

devtools(..., { anonymousActionType: 'unknown', ... })

If you wish to disable devtools (on production for instance). You can customize this setting by providing the enabled parameter:

devtools(..., { enabled: false, ... })

React context

The store created with create doesn't require context providers. In some cases, you may want to use contexts for dependency injection or if you want to initialize your store with props from a component. Because the normal store is a hook, passing it as a normal context value may violate the rules of hooks.

The recommended method available since v4 is to use the vanilla store.

import { createContext, useContext } from 'react'
import { createStore, useStore } from 'zustand'

const store = createStore(...) // vanilla store without hooks

const StoreContext = createContext()

const App = () => (
  <StoreContext.Provider value={store}>
    ...
  </StoreContext.Provider>
)

const Component = () => {
  const store = useContext(StoreContext)
  const slice = useStore(store, selector)
  ...

TypeScript Usage

Basic typescript usage doesn't require anything special except for writing create<State>()(...) instead of create(...)...

import { create } from 'zustand'
import { devtools, persist } from 'zustand/middleware'
import type {} from '@redux-devtools/extension' // required for devtools typing

interface BearState {
  bears: number
  increase: (by: number) => void
}

const useBearStore = create<BearState>()(
  devtools(
    persist(
      (set) => ({
        bears: 0,
        increase: (by) => set((state) => ({ bears: state.bears + by })),
      }),
      {
        name: 'bear-storage',
      },
    ),
  ),
)

A more complete TypeScript guide is here.

Best practices

Third-Party Libraries

Some users may want to extend Zustand's feature set which can be done using third-party libraries made by the community. For information regarding third-party libraries with Zustand, visit the doc.

Comparison with other libraries