Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What are the features of Redux DevTools?
Home
ReactJS
What are the features of Redux DevTools?
0
votes
asked
Jun 19, 2020
in
ReactJS
by
JackTerrance
What are the features of Redux DevTools?
#redux
#reactjs
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 19, 2020
by
JackTerrance
Below are the major features of Redux devTools
Lets you inspect every state and action payload
Lets you go back in time by “cancelling” actions
If you change the reducer code, each “staged” action will be re-evaluated
If the reducers throw, you will see during which action this happened, and what the error was
With
persistState()
store enhancer, you can persist debug sessions across page reloads
...