DEV Community

Discussion on: Why I Stopped Using Redux

Collapse
 
adrianmarkperea profile image
Adrian Perea

Great article!

What are your thoughts on Recoil? It's almost seamless with how it integrates with React. Aside from creating separate atoms and selectors, using them is like using React state hooks.

Collapse
 
g_abud profile image
Gabriel Abud

I haven't used it in depth, but from my understanding Recoil is meant to solve a different issue. Mainly performance issues that Context suffers from.

I could be misunderstanding the library but I don't believe it handles any kind of caching for you, out of the box.