Is there any articles about the comparison of nanostore
with other state management lib?
#139
Replies: 4 comments 1 reply
-
There is no such article right now. The main benefits behind Nano Stores is not size, but the idea of moving business logic from React components to stores. Nano Stores is not just a storage for the data. The idea is that you will move validations, AJAX requests, etc into the stores. It will allow to simplify tests and make all of your React components very simple. |
Beta Was this translation helpful? Give feedback.
-
There are article comparing Recoil and Jotai, and Jotai usually scores higher. Nano Stores looks even than Jotai IMHO. |
Beta Was this translation helpful? Give feedback.
-
To me, |
Beta Was this translation helpful? Give feedback.
-
After reading the docs, I want to jump from
recoil
tonanostore
. But I want to ensure I won't have to go back torecoil
for performance or other reasons. I googled for comparison articles, but I didn't find any.So I'm stating the pros I know. Anyone can share any articles or their thoughts about
nanostore
in the thread.Pros
react-dom
.Beta Was this translation helpful? Give feedback.
All reactions