DEV Community

Discussion on: Redux vs Context API: When to use them

Collapse
 
l0h1t profile image
Lohit Peesapati

I found Redux to be easier to setup and work with than Context API. I migrated a library I was building in Redux to context API and reused most of the reducer logic, but the amount of optimization and debugging I had to do to make the same functionality work was a nightmare in Context. It made me appreciate Redux more and I switched back to save time. It was a good learning to know the specific use case and limitations of context.

Collapse
 
ruppysuppy profile image
Tapajyoti Bose

I too am a huge fan of redux for most projects!