awesome-repositories.com
© 2026 Bringes Technology SRL·VAT RO45896025·hello@bringes.io
MCPSitemapPrivacyTerms
Action-Reducer Architectures · Awesome GitHub Repositories

1 repo

Awesome GitHub RepositoriesAction-Reducer Architectures

Patterns centered on the formal dispatching of intent and the functional transformation of state, distinct from structural storage or component-level reactivity.

Explore 1 awesome GitHub repository matching software engineering & architecture · Action-Reducer Architectures. Refine with filters or upvote what's useful.

  1. Home
  2. Software Engineering & Architecture
  3. System & Application Design
  4. Application Layer Architectures
  5. State Management Architectures
  6. Action-Reducer Architectures

Awesome Action-Reducer Architectures GitHub Repositories

Describe the repository you're looking for…
We'll search the best matching repositories with AI.
  • reduxjs/redux

    reduxjs/redux

    61,444GitHubView 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

    TypeScriptredux

Explore sub-tags

  • Action Reducer PatternsArchitectural pattern using plain objects to represent events and functions to define how those events transform application state.
  • Action-Driven State MutationsMechanism where state changes are triggered by processing discrete event objects that describe the intent of a mutation.
  • Pure Reducer CompositionsMethod of calculating state transitions by combining multiple independent, pure functions that return new state values.
Unidirectional Data Flow ArchitecturesArchitectural pattern where state updates follow a strict, predictable cycle initiated by dispatching actions.