Like Redux, Recoil is state management library in React. Let’s look at the differences and how to make the switch when you’re ready.
Managing complex state in React can sometimes be hard, which is why some of us use Redux or similar libraries like MobX to manage state in React.
Recoil is another state management library that is closely modeled towards React’s Hooks API. It allows you to define shared state as atoms, and computed state which it refers to as selectors. If you want to learn about the limitation the team at Facebook faced and how they tried to solve it with recoil, you can watch this video.
One important note: Although many companies including Facebook are using Recoil, it is technically in an experimental state, and its API and functionality may change.
In this post, I’ll show you how to switch from Redux to Recoil and along the way compare the differences. I’ll be working with the TodoMVC example from Redux’s GitHub repository. You can download the zip file using this link I made for you 😉. Here’s how the app works:
#react #redux #recoil