DEV Community

Discussion on: Why Redux over a more basic Global Store

Collapse
 
adriaanwm profile image
adriaanwm

Nice article!

Ideally for me Redux devtools would include action, path, file and line (eg. SET:todos.results.0:todos/index.js:18) to improve the setState method of updating state. This way if something weird is happening in state you can quickly track down where it's coming from.

Not to say that this would entirely replace the need for some custom actions/reducers.