CRUD with RecoilJS and remote API

Alex Vasilev
Geek Culture
Published in
2 min readOct 31, 2021

--

RecoilJS is a modern state management library for React developed by the Facebook team. You may ask “Another one state management lib? I use Redux with Redux Toolkit. Why do I need something else?”. The answer is simplicity. For a simple CRUD app with Redux Toolkit you have to write tons of code with reducers, actions, extra reducers, etc. With RecoilJS everything is simple. In this article, I’ll show you how to create a CRUD app with React+RecoilJS and integrate it with the backend.

--

--