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

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoServidor MCPAcerca deCómo clasificamosPrensa
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
reflux avatar

reflux/refluxjs

0
View on GitHub↗

Refluxjs

Refluxjs es una librería de gestión de estado diseñada para implementar una arquitectura de flujo de datos unidireccional. Gestiona el estado de la aplicación a través de un ciclo estricto de acciones y almacenes (stores) para evitar bucles de actualización impredecibles.

La librería coordina operaciones asíncronas gestionando flujos de eventos y activando acciones relacionadas de éxito o fallo. También proporciona un registro de estado global que rastrea los estados de los almacenes mediante identificadores únicos, permitiendo la clonación profunda para la persistencia y la depuración de viaje en el tiempo (time-travel debugging).

Su superficie de capacidades cubre la gestión centralizada del estado, incluyendo la creación de almacenes de datos y la agregación de estados derivados. Incluye herramientas para interceptar emisiones de acciones mediante hooks pre-emisión y mecanismos para vincular el estado del almacén directamente a los componentes de la interfaz de usuario para el renderizado automático.

Búsqueda con IA

Explora más repositorios increíbles

Describe lo que necesitas en lenguaje sencillo: la IA clasifica miles de proyectos open-source curados por relevancia.

Start searching with AI

Features

  • Unidirectional Data Flow Architectures - Ensures state changes follow a strict unidirectional cycle of actions and stores to prevent unpredictable update loops.
  • Centralized State Stores - Provides centralized state stores that act as the source of truth for application data.
  • Unidirectional State Management - Implements a strict unidirectional dataflow architecture to prevent unpredictable state update loops.
  • Asynchronous Action Handling - Coordinates long-running operations by managing event streams and triggering success or failure actions.
  • Action Creators - Provides a mechanism to define function objects that trigger application state changes.
  • Action Dispatching - Dispatches events to listening stores via synchronous execution or deferred asynchronous emission.
  • Centralized State Containers - Implements a centralized state management system where independent stores listen for actions to update application data.
  • Component State Bindings - Binds central store data directly to components to trigger automatic view re-renders.
  • Observer Patterns - Employs the observer pattern to notify registered listeners whenever store state changes.
  • Named Event Dispatchers - Implements a system that dispatches named events to notify subscribed store handlers.
  • Action-to-Handler Mappings - Binds stores to collections of actions by mapping action names to corresponding handler methods.
  • State Containers - Implements state containers that process actions and trigger updates to registered listeners.
  • Unidirectional Dataflow Architectures - Enforces a strict unidirectional dataflow to prevent unpredictable update loops in application state.
  • Action Creators - Defines function objects that trigger state changes through synchronous or asynchronous event execution.
  • Reactive Store Bindings - Binds store data to components so the view re-renders automatically upon store updates.
  • Reactive State Syncing - Connects central stores to UI components by mixing store state into properties with selective filtering.
  • Action Dispatchers - Provides mechanisms for dispatching named events to trigger state mutations within stores.
  • Subtree Action Listeners - Binds callbacks to trigger state updates when specific actions are dispatched via individual or bulk mapping.
  • Centralized State Management - Maintains application data in central stores that listen for actions and update internal state.
  • React State Bindings - Binds central store data directly to React components to trigger automatic view re-renders.
  • State Management Libraries - Provides a library for managing application state using a unidirectional dataflow architecture.
  • Undo-Redo State Stores - Enables the retrieval of global state deep copies and programmatic updates to support undo and redo features.
  • Time-Travel Debugging - Provides a global state registry that enables deep cloning for persistence and time-travel debugging.
  • Event Stream Join Patterns - Joins multiple asynchronous action emissions to coordinate parallel state operations.
  • State Snapshots - Tracks state across multiple stores in a central registry to enable deep cloning and debugging.
  • Pre-Emission Hooks - Provides pre-emission hooks to filter or transform arguments and conditionally block action dispatch.
  • State Snapshots - Captures and reconstructs application state snapshots to enable time-travel debugging.
  • State Snapshot Registries - Maintains a global state registry that tracks store states via unique identifiers for persistence and debugging.
  • Async Action Coordination - Executes long-running operations by triggering child actions upon completion to return results to stores.
  • Async Operation Coordinators - Includes utilities for synchronizing multiple asynchronous event streams into a single coordinated callback.
  • Dataflow Frameworks - Implements a framework based on the architectural pattern of unidirectional dataflow for state transitions.
  • Derived State Management - Allows the creation of secondary stores that derive and transform data from primary stores.
  • Derived State Stores - Provides the ability to create derived stores that combine or transform data from multiple primary stores.
  • Shared State Registries - Maintains a global registry of store states to support deep cloning and time-travel debugging.
  • State Registries - Maintains a centralized registry of all store states to enable persistence and state restoration.
5,323 estrellas·322 forks·JavaScript·BSD-3-Clause·10 vistas

Historial de estrellas

Gráfico del historial de estrellas de reflux/refluxjsGráfico del historial de estrellas de reflux/refluxjs

Alternativas open-source a Refluxjs

Proyectos open-source similares, clasificados según cuántas características comparten con Refluxjs.
  • effector/effectorAvatar de effector

    effector/effector

    4,837Ver en 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

    TypeScriptbusiness-logiceffectorevent-driven
    Ver en GitHub↗4,837
  • day8/re-frameAvatar de day8

    day8/re-frame

    5,532Ver en 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

    Clojureclojurescriptre-framereact
    Ver en GitHub↗5,532
  • vuejs/vuexAvatar de vuejs

    vuejs/vuex

    28,342Ver en 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

    JavaScriptjavascriptstate-managementtime-travel
    Ver en GitHub↗28,342
  • rackt/reduxAvatar de rackt

    rackt/redux

    61,509Ver en 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

    TypeScript
    Ver en GitHub↗61,509
Ver las 30 alternativas a Refluxjs→

Preguntas frecuentes

¿Qué hace reflux/refluxjs?

Refluxjs es una librería de gestión de estado diseñada para implementar una arquitectura de flujo de datos unidireccional. Gestiona el estado de la aplicación a través de un ciclo estricto de acciones y almacenes (stores) para evitar bucles de actualización impredecibles.

¿Cuáles son las características principales de reflux/refluxjs?

Las características principales de reflux/refluxjs son: Unidirectional Data Flow Architectures, Centralized State Stores, Unidirectional State Management, Asynchronous Action Handling, Action Creators, Action Dispatching, Centralized State Containers, Component State Bindings.

¿Qué alternativas de código abierto existen para reflux/refluxjs?

Las alternativas de código abierto para reflux/refluxjs incluyen: effector/effector — Effector is a reactive state management library designed for building complex, event-driven applications. It functions… day8/re-frame — re-frame is a functional framework for building single-page applications in ClojureScript. It provides a centralized,… vuejs/vuex — Vuex is a centralized state management library for Vue.js applications. It provides a single source of truth for… rackt/redux — Redux is a JavaScript state management library that serves as a centralized state container for application data. It… reduxjs/redux — Redux is a predictable state container designed to manage global application data through a centralized store. It… zerobias/effector — Effector is a reactive state management library and data flow orchestrator designed for building complex, event-driven…