https://github.com/mrpmorris/fluxor
Fluxor is a zero boilerplate Flux/Redux library for Microsoft .NET and Blazor.
https://github.com/mrpmorris/fluxor
blazor dotnet flux redux
Last synced: 4 days ago
JSON representation
Fluxor is a zero boilerplate Flux/Redux library for Microsoft .NET and Blazor.
- Host: GitHub
- URL: https://github.com/mrpmorris/fluxor
- Owner: mrpmorris
- License: mit
- Created: 2020-03-14T21:27:01.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2025-03-19T18:53:54.000Z (27 days ago)
- Last Synced: 2025-04-04T09:03:35.605Z (11 days ago)
- Topics: blazor, dotnet, flux, redux
- Language: C#
- Homepage:
- Size: 1.65 MB
- Stars: 1,344
- Watchers: 36
- Forks: 150
- Open Issues: 4
-
Metadata Files:
- Readme: Docs/README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
- awesome-blazor - Fluxor -   Zero boilerplate Flux/Redux library for DotNet. (Libraries & Extensions / Tools & Utilities)
README
# Fluxor - documentation
## Flux pattern
Often confused with Redux. Redux is the name of a library, Flux is the name of the pattern that Redux and
Fluxor implement.
**Rules**
* State should always be read-only.
* To alter state our app should dispatch an action.
* Every reducer that processes the dispatched action type will create new state to reflect the old
state combined with the changes expected for the action.
* The UI then uses the new state to render its display.## Tutorials
### Basic concepts* [State, actions, and reducers](../Source/Tutorials/01-BasicConcepts/01A-StateActionsReducersTutorial/)
* [Effects](../Source/Tutorials/01-BasicConcepts/01B-EffectsTutorial/)
* [Middleware](../Source/Tutorials/01-BasicConcepts/01C-MiddlewareTutorial/)
* [ActionSubscriber](../Source/Tutorials/01-BasicConcepts/01E-ActionSubscriber/)### Blazor for web
* [State, actions, and reducers](../Source/Tutorials/02-Blazor/02A-StateActionsReducersTutorial/)
* [Effects](../Source/Tutorials/02-Blazor/02B-EffectsTutorial/)
* [Middleware](../Source/Tutorials/02-Blazor/02C-MiddlewareTutorial/)
* [Redux Dev Tools](../Source/Tutorials/02-Blazor/02D-ReduxDevToolsTutorial/)