awesome-repositories.com
Blog
MCP
awesome-repositories.com

Discover the best open-source repositories with AI-powered search.

ExploreCurated searchesOpen-source alternativesSelf-hosted softwareBlogSitemap
ProjectMCP serverAboutHow we rankPress
LegalPrivacyTerms
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

Frontend State Management Libraries

Ranking updated Jun 30, 2026

For a state management library for frontend frameworks, the strongest matches are reduxjs/redux (Redux is a predictable, centralized state container built around), reactjs/redux (Redux is a well-established global state management library with) and rackt/redux (Redux is a predictable state container with a centralized). reduxjs/redux-toolkit and mobxjs/mobx round out the shortlist. Each is ranked by relevance to your query, popularity and recent activity.

Explore robust state management solutions for React, Vue, and other modern JavaScript frontend framework architectures.

Frontend State Management Libraries

Find the best repos with AI.We'll search the best matching repositories with AI.
  • reduxjs/reduxreduxjs avatar

    reduxjs/redux

    61,511View on GitHub↗

    Redux is a predictable state container designed to manage global application data through a centralized store. It operates on a unidirectional data flow architecture where state transitions are triggered by dispatching action objects, which are then processed by pure reducer functions to produce a new, immutable state tree. This approach ensures that application data remains consistent and traceable across the entire component hierarchy. The library distinguishes itself through a functional pattern that relies on pure functions for state logic and a middleware-based extension system. This mid

    Redux is a predictable, centralized state container built around a unidirectional data flow with pure reducers, and while it's deeply integrated with React, it is fully framework-agnostic and provides the middleware, DevTools, and selector patterns this search requires, making it the flagship cross‑framework state management library.

    TypeScriptCentralized State ContainersCentralized State StoresState Containers
    View on GitHub↗61,511
  • reactjs/reduxreactjs avatar

    reactjs/redux

    61,503View on GitHub↗

    Redux is a global state management library and predictable state container for JavaScript applications. It implements a store pattern that maintains the entire application state as a single source of truth, ensuring consistent behavior across different components and environments. The library relies on a unidirectional data flow where state updates follow a strict one-way cycle. This is achieved through a system of discrete actions, pure-function reducers, and a centralized store to ensure that state transitions remain predictable and traceable. The framework includes capabilities for monito

    Redux is a well-established global state management library with a centralized store, middleware for async/side-effects, developer tools, and bindings for React and other frameworks—exactly the cross-framework solution with all the listed features.

    TypeScriptCentralized State StoresStore Pattern ImplementationsGlobal State Managers
    View on GitHub↗61,503
  • rackt/reduxrackt avatar

    rackt/redux

    61,509View on GitHub↗

    Redux is a JavaScript state management library that serves as a centralized state container for application data. It operates as a predictable state machine, maintaining the entire application state in a single immutable object tree to ensure a consistent source of truth. The library enforces a unidirectional data flow architecture where the state is read-only and can only be modified by dispatching action objects. State transitions are calculated by applying pure reducer functions to the current state and a specific action, ensuring that data updates are deterministic and trackable. The sys

    Redux is a predictable state container with a centralized store, middleware, devtools, and official bindings for React as well as other frameworks, making it a comprehensive cross-framework state management library that covers the listed features.

    TypeScriptCentralized State ContainersGlobal State StoresState Debugging Tools
    View on GitHub↗61,509
  • reduxjs/redux-toolkitreduxjs avatar

    reduxjs/redux-toolkit

    11,213View on GitHub↗

    Redux Toolkit is a state management toolkit and store configurator designed to simplify the development of Redux applications by reducing boilerplate code. It functions as an immutable state manager and a centralized store configuration system that provides a streamlined workflow for managing global application state. The project distinguishes itself through an automated async action orchestrator that manages the lifecycle of promises by automatically dispatching pending, fulfilled, and rejected actions. It also acts as a normalized state organizer, providing tools to structure complex relati

    Redux Toolkit is the official, opinionated toolset for Redux, a battle-tested cross-framework state management library with a centralized store, middleware, async action handling, and selector support, making it a comprehensive fit for this search.

    TypeScriptCentralized State ContainersAsync Action OrchestratorsThunk Orchestrators
    View on GitHub↗11,213
  • mobxjs/mobxmobxjs avatar

    mobxjs/mobx

    28,189View on GitHub↗

    MobX is a reactive state management library and fine-grained reactivity engine. It provides an observable data store that automatically triggers updates in the user interface when data structures change, functioning as a transparent functional reactive store to maintain a consistent source of truth. The system utilizes a dependency-graph mapping and proxy-based object observation to track data dependencies. This ensures that only the specific components dependent on changed data are updated, which reduces unnecessary re-renders and optimizes frontend performance. The library supports decoupl

    MobX is a reactive state management library with official React bindings and support for other frameworks (Vue, Angular, etc.), offering observable stores, memoized computed values, async handling via actions/flows, and devtools, though it lacks a dedicated middleware system like Redux — still a strong fit for cross-framework state management.

    TypeScriptCentralized State StoresMemoized Derivations
    View on GitHub↗28,189
  • statelyai/xstatestatelyai avatar

    statelyai/xstate

    29,734View on GitHub↗

    XState is a statechart logic library and finite state machine framework used to model complex application behavior. It provides a system for defining states, events, and transitions to govern how a system responds to inputs through a formal schema. The project includes a visual state machine editor that allows for the design of state machine diagrams which automatically generate the corresponding logic and code. It implements an actor model to manage independent concurrent entities that communicate via asynchronous events to coordinate behavioral flows. The framework covers event-driven stat

    XState is a statechart and finite state machine library that works as a cross-framework state management solution, with official bindings for React, Vue, and others, and it provides a centralized store, middleware, async handling (via actors and invoked services), developer tools (visualizer), and state selectors, making it a comprehensive choice for managing global application state.

    TypeScriptFinite State Machine EnginesStatechart Logic LibrariesActor Models
    View on GitHub↗29,734
  • effector/effectoreffector avatar

    effector/effector

    4,837View on GitHub↗

    Effector is a reactive state management library designed for building complex, event-driven applications. It functions as a data flow engine that models application logic as a directed acyclic graph, ensuring that state updates propagate automatically through interconnected nodes. By utilizing atomic state updates and declarative unit composition, the library maintains data consistency and provides a predictable execution model for managing application state. The project distinguishes itself through its framework-agnostic architecture, which decouples business logic from user interface implem

    Effector is a mature, event-driven state management library with first-class bindings for React, Vue, Solid, and Svelte, providing a centralized store, effects for async operations, derived stores for memoized selectors, and dedicated developer tools — it fully matches the intent for a cross-framework state management solution.

    TypeScriptMemoized DerivationsState ContainersDerived State Management
    View on GitHub↗4,837
  • rematch/rematchrematch avatar

    rematch/rematch

    8,417View on GitHub↗

    Rematch is a Redux state management framework and model orchestrator designed to organize application state into cohesive units. It functions as an asynchronous state workflow manager that bundles reducers and side effects into modular models to reduce the boilerplate typically required for Redux implementations. The framework provides an extensible plugin architecture for injecting custom behavior and configuration into the store lifecycle. It supports a multi-store application architecture, allowing for the creation and management of several independent state containers within a single appl

    Rematch is a Redux-based state management framework that reduces boilerplate and organizes state into cohesive models, with built-in cross-framework bindings for React, Vue, and Angular, and supports async side effects, middleware, plugin architecture, and selectors — making it a comprehensive fit for managing global state across multiple frontend frameworks.

    TypeScriptRedux ImplementationsState-Management FrameworksAsynchronous State Transition Orchestration
    View on GitHub↗8,417
  • mobxjs/mobx-state-treemobxjs avatar

    mobxjs/mobx-state-tree

    7,050View on GitHub↗

    MobX State Tree is a structured, tree-based state management library for JavaScript applications that combines typed model definitions with reactive snapshots and patch-based change tracking. It provides a reactive state container with runtime and compile-time type safety, where application state is defined as a tree of typed models with collocated actions, computed views, and lifecycle hooks for predictable state mutations. The library is built around an action-centric mutation model that encapsulates all state changes within named functions that directly modify the tree, supported by genera

    MobX State Tree is a structured, tree-based state management library that works with React via mobx-react and other frameworks through MobX’s bindings, giving you a typed centralized store, computed selectors, async action handling, and integration with MobX developer tools, though it lacks a traditional middleware model.

    TypeScriptGenerator-Based Async ActionsSide Effect Management LibrariesTime-Travel Debuggings
    View on GitHub↗7,050
  • nanostores/nanostoresnanostores avatar

    nanostores/nanostores

    7,072View on GitHub↗

    Nano Stores is a framework-agnostic state management library that uses a system of small, independent atomic stores to synchronize data across different JavaScript UI frameworks. It provides a reactive state container designed to minimize unnecessary component re-renders by decoupling application state into independent stores. The library features specialized synchronizers for real-time distributed state using WebSockets with conflict-free replicated data types, as well as a browser storage persistor for maintaining state across multiple open tabs. It utilizes adapter-based integration to map

    Nano Stores is a framework-agnostic state management library with cross-framework adapters and atomic stores that support async handling and selectors, fitting the core need for a global state solution that works with React and other UI frameworks.

    TypeScriptAtomic State PrimitivesReactive State ManagersState Management Libraries
    View on GitHub↗7,072
  • cerebral/cerebralcerebral avatar

    cerebral/cerebral

    1,996View on GitHub↗

    Declarative state and side effects management for popular JavaScript frameworks

    Cerebral is a declarative state management library with built-in side-effect handling and a debugger, designed to work with React, Inferno, and other JavaScript frameworks, making it a solid fit for cross-framework state management.

    JavaScriptData Management
    View on GitHub↗1,996
Compare the top 10 at a glance
RepositoryStarsLanguageLicenseLast push
reduxjs/redux61.5KTypeScriptMITJun 22, 2026
reactjs/redux61.5KTypeScriptMITJun 13, 2026
rackt/redux61.5KTypeScriptMITJun 22, 2026
reduxjs/redux-toolkit11.2KTypeScriptMITJun 23, 2026
mobxjs/mobx28.2KTypeScriptMITJun 15, 2026
statelyai/xstate29.7KTypeScriptMITJun 22, 2026
effector/effector4.8KTypeScriptMITMay 13, 2026
rematch/rematch8.4KTypeScriptMITSep 27, 2023
mobxjs/mobx-state-tree7.1KTypeScriptMITMar 30, 2026
nanostores/nanostores7.1KTypeScriptmitFeb 11, 2026

Related searches

  • a reactive state management library for frontend
  • a state management library for Flutter apps
  • a state management library for Vue
  • a data fetching and caching library for React
  • a component library for React web interfaces
  • a state machine library for TypeScript apps
  • a form validation library for React
  • State management library