Login
Remember
Register
Ask a Question
What are the core principles of Redux?
0
votes
asked
Jun 19, 2020
in
ReactJS
by
JackTerrance
What are the core principles of Redux?
#reactjs
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 19, 2020
by
JackTerrance
Redux follows three fundamental principles:
Single source of truth:
The state of your whole application is stored in an object tree within a single store. The single state tree makes it easier to keep track of changes over time and debug or inspect the application.
State is ready only:
The only way to change the state is to emit an action, an object describing what happened. This ensures that neither the views nor the network callbacks will ever write directly to the state.
Changes are made with pure functions:
To specify how the state tree is transformed by actions, you write pure reducers(Reducers are just pure functions that take the previous state and an action, and return the next state).
...