awesome-repositories.com
Blog
awesome-repositories.com

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

ExploreCurated searchesOpen-source alternativesSelf-hosted softwareBlogSitemap
ProjectAboutHow we rankPressMCP server
LegalPrivacyTerms
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

State management library

Ranking updated Jul 14, 2026

For state watchers, the strongest matches are reflux/refluxjs (Refluxjs is a state management library that implements a), reduxjs/redux (Redux is a foundational state management library that provides) and vanjs-org/van (This is a lightweight reactive UI framework that includes). redux-observable/redux-observable and reswift/reswift round out the shortlist. Each is ranked by relevance to your query, popularity and recent activity.

Compare the top state management libraries for your project. Hand-picked by activity and features to help you find the best fit for your stack.

State management library

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

    reflux/refluxjs

    5,323View on GitHub↗

    Refluxjs is a state management library designed to implement a unidirectional dataflow architecture. It manages application state through a strict cycle of actions and stores to prevent unpredictable update loops. The library coordinates asynchronous operations by managing event streams and triggering related success or failure actions. It also provides a global state registry that tracks store states via unique identifiers, enabling deep cloning for persistence and time-travel debugging. Its capability surface covers centralized state management, including the creation of data stores and de

    Refluxjs is a state management library that implements a unidirectional dataflow architecture with built-in support for asynchronous actions, state persistence, and time-travel debugging, making it a direct fit for your requirements.

    JavaScriptAsynchronous Action HandlingTime-Travel DebuggingObserver Patterns
    View on GitHub↗5,323
  • 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 foundational state management library that provides a centralized store, predictable state updates, and robust debugging tools, making it a comprehensive solution for managing application data.

    TypeScriptObserver Patterns
    View on GitHub↗61,511
  • vanjs-org/vanvanjs-org avatar

    vanjs-org/van

    4,390View on GitHub↗

    Van is a reactive JavaScript UI framework designed for building user interfaces with state binding and automatic DOM updates without a virtual DOM. It functions as a buildless frontend framework, allowing the creation of reactive applications using standard JavaScript functions that run directly in the browser without a compilation step. The framework includes a reactive state manager that uses proxy-based objects to track dependencies and trigger targeted UI updates. It provides a server-side rendering tool for generating static HTML and a corresponding client-side hydration process to attac

    This is a lightweight reactive UI framework that includes a built-in state management system for tracking dependencies and triggering updates, though it is primarily designed for building interfaces rather than serving as a standalone, framework-agnostic state observation library.

    JavaScriptReactive State ManagersReactive State Systems
    View on GitHub↗4,390
  • redux-observable/redux-observableredux-observable avatar

    redux-observable/redux-observable

    7,815View on GitHub↗

    Redux-Observable is a functional middleware for Redux that treats action streams as observables to manage complex asynchronous side effects and timing. It acts as an asynchronous action orchestrator, transforming streams of Redux actions into new actions through pipelines of observable-based side effects to coordinate application state changes. The project allows for the dynamic loading, injection, and replacement of side-effect streams at runtime. This enables the addition of asynchronous task handlers without requiring a full application restart, supporting code splitting and lazy loading o

    This library provides reactive state observation and asynchronous action handling by integrating with Redux, making it a specialized tool for managing complex side effects in state-driven applications.

    TypeScriptAsynchronous Action HandlingReactive State Management
    View on GitHub↗7,815
  • reswift/reswiftReSwift avatar

    ReSwift/ReSwift

    7,594View on GitHub↗

    ReSwift is a unidirectional data flow framework for Swift applications that centralizes state management within a single store. It ensures predictable and traceable updates by requiring all state modifications to occur through explicit actions processed by reducer functions. The library includes a state time travel debugger that records and replays sequences of actions to reload or rewind the application state. It also provides an asynchronous action dispatcher to handle side effects and network requests while maintaining synchronized state updates. The framework covers a broad surface of st

    ReSwift is a unidirectional state management library for Swift that provides centralized state stores, asynchronous action handling, and time-travel debugging, making it a direct fit for your requirements within the Swift ecosystem.

    SwiftAsynchronous Action HandlersTime-Travel Debuggers
    View on GitHub↗7,594
  • vuejs/vuexvuejs avatar

    vuejs/vuex

    28,342View on GitHub↗

    Vuex is a centralized state management library for Vue.js applications. It provides a single source of truth for application data, ensuring consistent state across a component tree through a reactive data store. The system organizes the global state tree into independent, namespaced modules to prevent naming collisions and maintain code organization. It distinguishes between synchronous mutations for predictable state transitions and asynchronous actions for handling complex operations. The library includes cached getters for derived state, store lifecycle hooks for mutation interception, an

    Vuex is a centralized state management library that provides reactive state updates, asynchronous action handling, and time-travel debugging, though it is specifically designed for the Vue.js ecosystem rather than being framework-agnostic.

    JavaScriptAsynchronous Action HandlersAsynchronous Action Handling
    View on GitHub↗28,342
  • 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

    This library provides a structured, reactive state container that supports asynchronous actions, state persistence via snapshots, and time-travel debugging through its patch-based change tracking system.

    TypeScriptAsynchronous Action HandlingTime-Travel DebuggersTime-Travel Debuggings
    View on GitHub↗7,050
  • pmndrs/valtiopmndrs avatar

    pmndrs/valtio

    10,196View on GitHub↗

    Valtio is a proxy-based state management library and reactive state engine that provides a mutable state store. It allows application state to be updated through direct object mutations rather than immutable patterns, using JavaScript proxies to track changes and trigger updates. For React applications, it includes a synchronization hook that ensures components re-render only when the specific properties they access are modified. The system supports reactive data derivation through computed properties that automatically update when their underlying dependencies change. It maintains reactivity

    Valtio is a proxy-based state management library that provides reactive state updates and dependency tracking, making it a direct fit for observing and reacting to application state changes.

    TypeScriptReactive State Systems
    View on GitHub↗10,196
  • ctrlplusb/easy-peasyctrlplusb avatar

    ctrlplusb/easy-peasy

    5,044View on GitHub↗

    Easy-peasy is a React state management library and typed framework that provides a centralized store for managing global application state. It functions as an immutable state store and an async state orchestrator, ensuring end-to-end type safety for state definitions, actions, and derived values. The library distinguishes itself by converting direct mutation syntax into immutable updates to simplify the management of nested data. It includes a mechanism for persisting the state tree to storage and rehydrating it during the application boot process, with the ability to suspend the user interfa

    Easy-peasy is a state management library for React that provides reactive updates, asynchronous action handling, and built-in state persistence, though it is specifically tailored for the React ecosystem rather than being framework-agnostic.

    JavaScriptAsynchronous Action HandlingAsync State Orchestration
    View on GitHub↗5,044
  • pmndrs/zustandpmndrs avatar

    pmndrs/zustand

    58,371View on GitHub↗

    Zustand is a state management library that provides a centralized store for managing shared application data. It functions as a reactive container that connects application state to components, allowing them to subscribe to specific slices of data and trigger updates automatically. By utilizing selector-based data access and immutable state updates, the library ensures that components only re-render when their observed data changes, maintaining a predictable and efficient data flow. The library distinguishes itself through a pluggable, middleware-based architecture that allows for the extensi

    Zustand is a reactive state management library that provides a centralized store with support for asynchronous actions, persistence, and debugging through its middleware-based architecture.

    TypeScriptAsynchronous Action HandlersPersistence Automation
    View on GitHub↗58,371
  • alpinejs/alpinealpinejs avatar

    alpinejs/alpine

    31,675View on GitHub↗

    This project is a declarative framework for building reactive user interfaces by embedding logic directly into HTML markup. It functions as a lightweight state container that tracks data changes and automatically synchronizes the document object model with the underlying application state. By utilizing proxy-based observation, it ensures that interface updates occur precisely when reactive properties are modified. The framework distinguishes itself by allowing developers to define interactive behavior through custom attributes rather than external scripts. This approach enables the compositio

    Alpine.js provides a lightweight, proxy-based reactive state container that automatically synchronizes the DOM with application data, making it a capable tool for managing and observing state within a frontend environment.

    HTMLReactive State Containers
    View on GitHub↗31,675
  • vueuse/vueusevueuse avatar

    vueuse/vueuse

    22,092View on GitHub↗

    This project is a comprehensive collection of modular, reactive functions designed to streamline the development of user interfaces. It serves as a toolkit for managing application state, wrapping native browser hardware and system features, and encapsulating common logic patterns into reusable units. By binding asynchronous data sources, browser events, and system properties to component state, it provides a unified framework for building interactive web and desktop applications. The library distinguishes itself through its focus on composition and lifecycle management, allowing developers t

    This library provides a robust set of reactive primitives and state observation utilities that allow you to track and respond to data changes, though it is specifically optimized for the Vue ecosystem rather than being a framework-agnostic state management solution.

    TypeScriptReactive State ManagementFramework Agnostic UI Logic
    View on GitHub↗22,092
  • witheve/evewitheve avatar

    witheve/Eve

    7,225View on GitHub↗

    Eve is a domain-specific language IDE and integrated logic editor that combines a custom programming language with a dedicated editor to define application logic and state. It functions as a reactive state management system that monitors state variables and automatically triggers functional responses. The environment features an integrated runtime-editor loop that couples the language execution environment with the text editor to accelerate the development cycle. This setup enables the definition of software behavior and state transitions using an embedded domain-specific language. The proje

    Eve is a reactive programming environment that treats application state as a database, allowing you to define logic that automatically triggers updates when data changes, fitting the core requirement for reactive state observation.

    TypeScriptReactive State Management
    View on GitHub↗7,225
  • 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 reactive state management library that provides a framework-agnostic data flow engine for handling complex application logic and asynchronous updates, fitting the core requirements for state observation and reactivity.

    TypeScriptAsynchronous Action HandlingReactive State ManagementFramework Agnostic UI Logic
    View on GitHub↗4,837
  • zerobias/effectorzerobias avatar

    zerobias/effector

    4,837View on GitHub↗

    Effector is a reactive state management library and data flow orchestrator designed for building complex, event-driven applications. It models application logic as a directed acyclic graph, where state updates and asynchronous side effects propagate automatically through declarative pipelines. By decoupling business logic from user interface layers, it allows developers to maintain state in independent containers that communicate via standard interfaces, ensuring the system remains framework-agnostic. The library distinguishes itself through its robust support for isolated execution scopes, w

    Effector is a reactive state management library that provides robust tools for handling asynchronous side effects and state updates in a framework-agnostic way, making it a strong fit for managing complex application data flows.

    TypeScriptReactive State ContainersReactive State ManagementFramework Agnostic Interfaces
    View on GitHub↗4,837
  • livestorejs/livestorelivestorejs avatar

    livestorejs/livestore

    3,475View on GitHub↗

    Livestore is a reactive state management framework that utilizes a local SQLite database to store and synchronize application data. It provides an event-sourced state store that processes typed events through materializer functions to derive and persist application state. The framework implements offline-first data synchronization using a push-pull engine and append-only event logs to maintain consistency between clients and servers. It includes a real-time presence system for tracking user activity and shared session status across connected clients. The system covers a broad capability surf

    Livestore is a reactive state management framework that uses event sourcing and SQLite to handle state persistence and synchronization, making it a direct fit for managing and observing application data.

    TypeScriptTime-Travel Debuggers
    View on GitHub↗3,475
  • 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 that provides reactive updates, asynchronous action handling, and state persistence, making it a strong fit for observing and reacting to application state changes.

    TypeScriptObserver Patterns
    View on GitHub↗7,072
  • day8/re-frameday8 avatar

    day8/re-frame

    5,532View on GitHub↗

    re-frame is a functional framework for building single-page applications in ClojureScript. It provides a centralized, immutable database that serves as the single source of truth for the entire application state, enforcing a strict unidirectional data flow where events trigger state transitions and subsequent view updates. The framework distinguishes itself through a reactive signal graph and an interceptor-based middleware pipeline. By treating application logic as a sequence of data-driven events and declarative side effects, it decouples business logic from the view layer. This architectur

    This is a functional state management framework for ClojureScript that uses a reactive signal graph and event-driven architecture to handle application state, though it is specifically tied to the Clojure/Reagent ecosystem rather than being a framework-agnostic library.

    ClojureReactive State ManagementReactive State Graphs
    View on GitHub↗5,532
  • pubkey/rxdbpubkey avatar

    pubkey/rxdb

    23,048View on GitHub↗

    This project is a reactive, offline-first NoSQL database engine designed for JavaScript applications. It provides a robust framework for managing application state by synchronizing data across browsers, mobile devices, and server-side runtimes. By treating local storage as the primary source of truth, it enables applications to remain functional without network connectivity, automatically reconciling changes with remote backends once a connection is restored. The database distinguishes itself through a modular architecture that supports cross-environment synchronization and high-performance d

    This is a reactive, local-first database engine that functions as a robust state management layer by synchronizing data structures across environments and providing real-time observation of state changes.

    TypeScriptLocal Storage Persistence
    View on GitHub↗23,048
  • standardagents/arrow-jsstandardagents avatar

    standardagents/arrow-js

    3,673View on GitHub↗

    Arrow-js is a reactive UI framework and server-side rendering system designed for building agentic interfaces. It functions as a reactive state manager and isomorphic routing engine, enabling the creation of web applications that utilize tagged template literals for efficient DOM updates. The project distinguishes itself by incorporating a WebAssembly code sandbox, which allows untrusted or AI-generated code to execute within a secure virtual machine to render interfaces without accessing the host DOM. It further enables agentic UI development by allowing AI agents to dynamically generate vie

    Arrow-js functions as a reactive state manager that tracks observable dependencies and handles reactive side effects, making it a suitable tool for monitoring and reacting to application state changes.

    TypeScriptAgentic UI FrameworksReactive State ManagementClient-Side Hydration
    View on GitHub↗3,673
  • marcuswestin/store.jsmarcuswestin avatar

    marcuswestin/store.js

    13,983View on GitHub↗

    Store.js is a client-side state persistence library and web storage abstraction layer. It provides a consistent browser key-value storage wrapper that manages the persistence of application state across sessions using the most capable available local storage mechanism. The engine is extensible, allowing for the integration of custom storage backends and plugins to modify how data is read and written. It functions as a reactive web storage manager, monitoring specific keys to trigger notifications when stored values are updated. The library handles automatic data serialization for complex typ

    This library provides a reactive wrapper for browser-based key-value storage, allowing you to monitor and persist application state changes across sessions.

    JavaScriptKey-Value StoresStorage Abstraction LayersBrowser Storage
    View on GitHub↗13,983
  • vercel/swrvercel avatar

    vercel/swr

    32,406View on GitHub↗

    SWR is a data fetching library that provides a collection of hooks for managing remote data synchronization, caching, and state updates in web applications. It employs a declarative approach to handle complex network request lifecycles and dependency chains, ensuring that client-side application state remains consistent with server data through automatic revalidation and background updates. The library distinguishes itself through a reactive cache layer that automatically synchronizes local state with remote sources based on component lifecycle events. It features event-driven revalidation, w

    This library provides reactive state synchronization and caching for remote data, serving as a specialized tool for managing application state that mirrors server-side data sources.

    TypeScriptData Fetching LibrariesData Fetching State ManagementServer-Side Data Prefetching
    View on GitHub↗32,406
  • reactive/data-clientreactive avatar

    reactive/data-client

    2,031View on GitHub↗

    Data-client is an asynchronous state management library designed to synchronize server data with frontend applications. It functions as a normalized cache manager that maps complex API responses into structured, relational entities, ensuring data consistency across the entire application. By providing a unified communication layer, the library supports both REST and GraphQL, allowing developers to bind network data directly to user interface components through declarative hooks. The library distinguishes itself through a robust architecture for optimistic user interface development, where loc

    This library provides reactive state management for data fetching and normalization, offering asynchronous action handling and suspense integration, though it is primarily designed for the React ecosystem rather than being framework-agnostic.

    TypeScriptGlobal State ManagersState Management LibrariesCache Invalidation Strategies
    View on GitHub↗2,031
  • dmq/mvvmDMQ avatar

    DMQ/mvvm

    5,190View on GitHub↗

    This project is a custom implementation of the Model-View-ViewModel pattern designed to replicate the core reactivity and template parsing of the Vue framework. It functions as a data-binding engine, a reactive state manager, and a custom template compiler. The framework employs a system for synchronizing model state with DOM elements through property interception and an observer pattern. It uses a parser to scan DOM elements for directives, replacing placeholders and binding data to view nodes to achieve two-way data synchronization. The system covers reactive data binding and the developme

    This project provides a reactive data-binding engine and state management system that uses property interception to synchronize model changes with the DOM, fitting the core requirements for observing and reacting to application state.

    CSSTwo-Way Data BindingAttribute-Based DirectivesCustom Directives
    View on GitHub↗5,190
  • holoviz/panelholoviz avatar

    holoviz/panel

    5,709View on GitHub↗

    Panel is a Python data application framework used to build interactive dashboards and reactive user interfaces by connecting data visualizations, widgets, and callbacks. It functions as a reactive UI library that synchronizes application state with interface updates based on user interactions. The project distinguishes itself by offering multiple execution models, including a FastAPI-based web application server for scalable session management and a WebAssembly compiler that enables Python applications to run directly in the browser without a backend server. It also includes a specialized too

    Panel is a reactive framework that synchronizes application state with UI components through event-driven callbacks, making it a capable tool for managing and observing state in Python-based data applications.

    PythonData Application FrameworksData Science App DeploymentsData Visualization Dashboards
    View on GitHub↗5,709
  • jonataslaw/getjonataslaw avatar

    jonataslaw/get

    11,181View on GitHub↗

    Get is a framework for Flutter that provides a comprehensive toolkit for dependency injection, internationalization, route management, and reactive state management. It includes a UI utility kit for handling themes, adaptive layouts, and the display of overlays such as snackbars and dialogs. The framework is distinguished by its ability to perform navigation and overlay management without requiring a build context. It also features a dependency injection container that manages the memory lifecycle of controllers and services, and a localization system that maps keys to strings to update appli

    Get is a comprehensive Flutter framework that includes a robust reactive state management system capable of handling asynchronous updates and state observation, though it is specifically tailored to the Flutter ecosystem rather than being cross-framework.

    DartState Management FrameworksContextlessContextless Navigation
    View on GitHub↗11,181
  • legendapp/legend-stateLegendApp avatar

    LegendApp/legend-state

    4,145View on GitHub↗

    Legend-State is a reactive state management library for JavaScript applications that provides a centralized container for application data. It utilizes a fine-grained reactivity engine to track state access automatically, allowing developers to update and retrieve data without the need for boilerplate patterns like reducers, actions, or dispatchers. The library distinguishes itself through its hierarchical, path-based state addressing and proxy-based dependency tracking. By isolating state dependencies, it ensures that user interface updates are triggered only for the specific components that

    Legend-State is a reactive state management library that provides fine-grained reactivity and automatic persistence, making it a strong fit for monitoring and reacting to application state changes.

    TypeScriptApplication State ManagementReactive State Management LibrariesFine-Grained Reactivity
    View on GitHub↗4,145
  • jakesgordon/javascript-state-machinejakesgordon avatar

    jakesgordon/javascript-state-machine

    8,751View on GitHub↗

    This library is a finite state machine framework for JavaScript designed to manage application states and valid transitions. It provides a system for executing state changes with lifecycle hooks, conditional guards, and transition cancellation. The project is distinguished by its ability to inject state machine logic and transition capabilities directly into existing JavaScript class instances or objects. It also includes a visualization tool that exports state configurations into Graphviz DOT language for auditing system logic. The framework covers asynchronous transition execution and paus

    This library provides a robust framework for managing application state through finite state machines, offering lifecycle hooks and asynchronous transition handling that align well with reactive state management needs.

    JavaScriptFinite State Machine EnginesState-Transition ExecutionApplication State Management
    View on GitHub↗8,751
  • beekai-oss/little-state-machinebeekai-oss avatar

    beekai-oss/little-state-machine

    1,540View on GitHub↗

    Little State Machine is a lightweight state management library for React applications that provides a centralized data store for managing shared application information. It utilizes a context-based provider pattern to distribute state across the component tree, ensuring consistent data access without the need for manual property drilling. The library distinguishes itself through built-in support for automatic browser storage persistence, which synchronizes the in-memory state with local or session storage to maintain data continuity across page refreshes. It also incorporates middleware-drive

    This is a lightweight state management library for React that provides reactive state updates, middleware for asynchronous actions, and built-in browser storage persistence, fitting the category well despite being specifically tailored for the React ecosystem.

    TypeScriptState Management LibrariesGlobal State ManagersReact State Management
    View on GitHub↗1,540
  • state-adapt/state-adaptstate-adapt avatar

    state-adapt/state-adapt

    307View on GitHub↗

    Declarative, incremental state management library

    This library provides a declarative approach to state management with built-in support for reactive updates and asynchronous actions, making it a direct fit for observing and reacting to application state changes.

    TypeScriptAlternative State ManagementState Management
    View on GitHub↗307
  • timewarpengineering/blazor-stateTimeWarpEngineering avatar

    TimeWarpEngineering/blazor-state

    613View on GitHub↗

    A Blazor State management library by TimeWarp.

    This library provides a structured approach to state management specifically for Blazor applications, offering reactive updates and state persistence features that align with your requirements.

    C#Data Management
    View on GitHub↗613
  • ng-state/storeng-state avatar

    ng-state/store

    14View on GitHub↗

    RxJS and ImmutableJs powered state managment Angular apps. Inspired by NgRx.

    This library provides reactive state management for Angular applications using RxJS and immutable data structures, fitting the category despite being specifically tailored for the Angular ecosystem.

    TypeScriptAlternative State ManagementState Management
    View on GitHub↗14
  • hyperapp/hyperapphyperapp avatar

    hyperapp/hyperapp

    19,211View on GitHub↗

    Hyperapp is a lightweight JavaScript framework for building web applications. It functions as a declarative state management system that synchronizes the user interface with a centralized application state. The framework utilizes a virtual DOM to render user interfaces and reconcile changes to the browser display. It employs a subscription model to synchronize external web APIs and asynchronous events with the global state. The system manages data through a single-state-tree architecture, where updates are handled via discrete actions and pure functions. This approach ensures that the view u

    Hyperapp is a lightweight framework that provides a centralized state management system using a single-state-tree architecture and action-based updates, making it a suitable tool for observing and reacting to application state changes.

    JavaScriptLightweight UI FrameworksAction-Based State TransitionsApplication State Management
    View on GitHub↗19,211
  • reactjs/react-reduxreactjs avatar

    reactjs/react-redux

    23,473View on GitHub↗

    React Redux is a global state management bridge and a set of bindings that connect React components to a Redux state store. It serves as a communication layer and state store connector, allowing a declarative user interface to synchronize with a centralized source of truth. The library enables the synchronization of shared global state across an application by providing mechanisms to read state and dispatch actions directly from the view layer. It ensures predictable state transitions by bridging the gap between UI components and the Redux state container. The project covers core capabilitie

    This library provides a centralized state container and reactive synchronization mechanism specifically for React applications, fulfilling the core requirements for state observation and predictable updates.

    TypeScriptGlobal State ManagersAction-Based State TransitionsCentralized State Containers
    View on GitHub↗23,473
  • nigrosimone/ng-simple-statenigrosimone avatar

    nigrosimone/ng-simple-state

    46View on GitHub↗

    Simple state management in Angular with only Services and Signal.

    This library provides reactive state management specifically for Angular applications using services and signals, fitting the category despite being limited to a single framework.

    TypeScriptAlternative State ManagementState Management
    View on GitHub↗46
Compare the top 10 at a glance
RepositoryStarsLanguageLicenseLast push
reflux/refluxjs5.3KJavaScriptBSD-3-ClauseNov 21, 2019
reduxjs/redux61.5KTypeScriptMITJun 22, 2026
vanjs-org/van4.4KJavaScriptMITFeb 9, 2026
redux-observable/redux-observable7.8KTypeScriptMITDec 9, 2025
reswift/reswift7.6KSwiftMITApr 22, 2024
vuejs/vuex28.3KJavaScriptMITSep 25, 2024
mobxjs/mobx-state-tree7.1KTypeScriptMITMar 30, 2026
pmndrs/valtio10.2KTypeScriptMITJun 11, 2026
ctrlplusb/easy-peasy5KJavaScriptMITJun 22, 2026
pmndrs/zustand58.4KTypeScriptMITJun 22, 2026

Related searches

  • an open source tool for monitoring APIs
  • State management library
  • a tool for debugging application state
  • Reactive state engine
  • an open source tool for system monitoring
  • Property binding framework
  • a library of custom React hooks
  • Software update manager