|
|
|
|
|
by jefftchan
4337 days ago
|
|
It's great to see Facebook releasing code for Flux. Hope to see more in the future. Here are some other implementations of Flux for anyone who's interested:
https://github.com/BinaryMuse/fluxxor
https://github.com/jmreidy/fluxy
https://github.com/yahoo/flux-example We recently adopted this architecture for a medium-scale project. The unidirectional data flow has greatly reduced code complexity for us. We're still not satisfied with our server syncing strategy. Seems like actions are the best place to sync data, but how do you deal with interdependent actions? |
|
I'd also mention https://github.com/spoike/reflux as an implementation.