DEV Community

Discussion on: Why I stopped using Redux and Used Recoil Instead

Collapse
 
oliverradini profile image
OliverRadini

Is it possible to use recoil with frameworks/libraries other than react? One thing I like about Redux is that it disconnects state management from the rest of the frontend stack.

Collapse
 
akashshyam profile image
Akash Shyam

A state management library for React
Recoil official Website

Recoil was designed specifically for react to make it easy to use and adhere to the react idealogy

Collapse
 
oliverradini profile image
OliverRadini

One of the main advantages I've seen with React is that it doesn't try and enforce an ideology across the stack, but allows you to choose your own tools. I think that a distinct advantage of redux is that state management is framework agnostic.