DEV Community

Discussion on: Replace Redux with Hooks and the Context API: how to

Collapse
 
dastasoft profile image
dastasoft

Great article!

The downside I see replacing Redux is you will lose the debug tools that comes with Redux which are very handy, but for small-medium projects maybe it's the best solution.

Collapse
 
ricca509 profile image
Riccardo Coppola

Thanks!
You're right, to some extent you can debug React Hooks and see what the state looks like, but you don't get the nice actions debug/log and the timeline (not unless a bit of development).

I guess it can be ok with small projects as you say, with bigger ones the number of actions and interactions may require better debugging.