Home > Enterprise >  React State Management Confusion which have to select
React State Management Confusion which have to select

Time:10-20

What do you think to use Redux vs Zustand and Why you choose to use that one?

CodePudding user response:

Redux is very popular and has a big community behind it, and it is also widely used in enterprise solutions. Whereas Zustand is excellent and fast to implement in a smaller project, where redux can be a bit overkill.

So it really depends on what you need it for, but I would recommend looking into the advantages here: https://www.youtube.com/watch?v=DK-S4ZcmDcE And the public opinion here: https://www.reddit.com/r/reactjs/comments/r9e8nl/should_i_learn_redux_or_zustand/

  • Related