… And On It Goes
What I’m Starting With
Project status can be tracked via the core team discussion forum. This enables the React community to provide feedback on new potential features, experimental APIs and JavaScript syntax improvements.
Questions That Have Arisen
React was created by Jordan Walke, a software engineer at Meta, who released an early prototype of React called “FaxJS”.
What I’ve Gotten From It So Far
A React component under the Flux architecture should not directly modify any props passed to it, but should be passed callback functions that create actions which are sent by the dispatcher to modify the store. The action is an object whose responsibility is to describe what has taken place: for example, an action describing one user “following” another might contain a user id, a target user id, and the type USER_FOLLOWED_ANOTHER_USER. The stores, which can be thought of as models, can alter themselves in response to actions received from the dispatcher.