Getting Started with Flux

added by JavaScript Kicks
4/7/2015 8:41:35 AM

511 Views

Flux is an application architecture for building complex user interfaces. It eschews MVC in favor of unidirectional data flow. What this means is that data enters through a single place (your actions) and then flows outward through to their state manager (the store) and finally onto the view. The view can then restart the flow by calling other actions in response to user input.


0 comments