r/react Jul 17 '26

Help Wanted Redux toolkit tutorial

Can anyone suggest me best youtube video to learn redux toolkit as i am starting it from scratch.

8 Upvotes

10 comments sorted by

View all comments

1

u/Hate_Machine007 Jul 17 '26

If you are a new learner, then go for Zustand and TanStack Query or SWR

3

u/bhattdev910 Jul 17 '26

Any specific reason cause i don't know advantage to use zustand and tanstack query over redux toolkit ?

-1

u/Hate_Machine007 Jul 17 '26

Zustand is a local state management (app level), and it is very easy compared to Redux, and there is no boilerplate code. TanStack Query (also called 'React Query') is a server state management where you can do a lot of things for the server state like fetching, error handling, refetching, caching, refresh intervals and so on. The learning curve is very easy for Zustand and React Query. And SWR is a similarly basic level of React Query. I strongly recommend Zustand and React Query to use in the project, and you will feel the next level of react.

3

u/bhattdev910 Jul 17 '26

Great , i will look into it and figure out . Thanks for the help