Conf 2015 - Communicating with channels

James Long React has a simple way for components to communicate with each other: pass event handlers down through children and events will flow upwards to parent components. This works well for simple components and certain UI events, but it breaks down with large complex apps. The Flux architecture helps with this by defining ’actions’ that components can fire and subscribe to, and you write code outside of your components to handle data and dependencies of the actions. With the advent of ’goroutines’ an
Back to Top