reactjs,flux,react-router,flummox
In my setup I have my own router module which just wraps the instance of react-router that I create at startup. That makes it easy for any part of the application to just require that module and do what it needs to. But I would advise you not to have...
reactjs,reactjs-flux,flux,flummox
Before diving into Flux, I'd suggest to clean up the existing React code you have. As a start I would try to reduce component's own state as much as possible. For example, instead of having separate state for login and register, you can have a single screen as state, which...
You shouldn't load state from the server using an Ajax request directly in the components componentDidMount. The reason for this is that the purpose of Flux is to hide the nitty-gritty details of state fetching/management from the components. The Flux implementation should do that for you. There are a lot...