view source
Building A Simple React Application Using The Flux Pattern: A Step-By-Step Guide
React is a very powerful library for building interactive JavaScript applications. One of its strongest qualities is that it forces you to build your app in a uni-directional data flow. This is much different from other frameworks’ two-way data binding. With React, every piece of your application is controlled from a single source, it’s owner. The owner is defined by the Component that is passing “props” to its owned component.
Advertisement