Skip to content

Sweetymeow/LearningRedux_Lynda

Repository files navigation

Learning Redux from Lynda tutorial

Fellow the tutorial from Lynda - https://www.lynda.com/React-js-tutorials/Learning-Redux/540345-2.html

Redux attempts to make state mutations predictable by imposing certain restrictions on how and when updates can happen. These restrictions are reflected in the three principles of Redux.

Redux isn't exactly Flux, it's Flux-like, and Flux data flows in one direction. Instead of breaking the state up into different objects, we will create functions that are designed to manage specific leaves and branches of this state tree. Reducers : Actions describe the fact that something happened, but don't specify how the application's state changes in response. This is the job of reducers. Now we don't have to worry about how these reducers are composed. All we have to do is identify state, write good reducers, and let the Redux store handle the rest.

Actions Reduces Store

Command to Run the Front-end

#npm start

Releases

No releases published

Packages

No packages published