I've never quite understood Flux, partly due to all the cruft & boilerplate involved around Actions & Action Creators.<p>I've found a Command Bus pattern (a la CQRS) works much nicer, and cleaner.<p>1. Something happens in View (e.g. todo item is checked)
2. View passes a "CompleteTodoItemCommand" object to the Command Bus
3. Command Bus dispatches the Command to a registered Handler
4. Handler communicates with server, store etc. to handle the command; handing TodoItem to the store
5. Store triggers change event
6. View hears change event, renders self<p>That said, I've only built a few smaller projects in React, so perhaps I'm missing something important which Flux solves and I'm missing?