ReactJS Flux Application directory structure
My team is currently working on a large application being written in ReactJS using Facebook's Flux architecture. It is still in its infancy right now but it is going to grow big very soon. It will have more than 50 small component views, plenty of actions, stores and action-creators. Currently, our directory structure looks like - App |___ module_1 | |___ components | | |___ component1.react.js | | |___ component2.react.js | |___ module1ActionCreators.js | |___ module1Constants.js | |___ module1store.js | |___ module_2 |___ ... (same structure as above) One of the problems with this approach