What I Hate About Redux. If you use redux to develop your application, even small changes in functionality require you to write excessive amounts of code . This goes against the direct-mapping principle, which states that small functional changes should result in small code changes.
Read moreWhen should I avoid Redux?
You don’t need Redux for your React app
Read moreWhat does Redux do and when should you use it?
When to use Redux Redux allows you to manage your app’s state in a single place and keep changes in your app more predictable and traceable . It makes it easier to reason about changes occurring in your app.
Read moreShould I always use Redux?
Using Redux also means learning how it works, which again could be a waste of time if you don’t need it. As a rule of thumb – and one shared by one of Redux’s creators, Dan Abramov – you don’t need to use Redux unless you’re unable to manage state within React or other front-end frameworks you’re working with .24 Haz 2021
Read more