It was an absolute pleasure and an honor to be featured on your channel! You've taught me so much (your passport tutorials are the best!!), and I'm happy to finally be able to give back :)
hey mate, I have a question like let's suppose when component mounts I want to make an API call and get posts from JSONplaceholder and save those in redux store, how will I do that? I will use useEffect and then what will I do? where will I make the fetchAPI call, will it be inside the component and pass data as payload, or use the useEffect and it will call some action and this action will make the fetchAPI call inside reducer.? I might not have worded my question correctly, I am sorry I am not a native speaker. But the whole point is how will I make an API call. And if you have any video on it please leave a link. Thanks a lot, mate.
I'm working on my first backend portfolio project, but I wanted to use React for the client app and your video just saved me probably many more hours of researching. Drawings and expanding explanations like here 14:00 are priceless, Thank you!
Now I won’t dread using redux when building my full-stack projects. Toolkit and their new Query APIs are next level. Really allows us to focus on building our apps and letting state not be as important as the apps uI, functionality etc. great stuff’
Wow, I already enjoy working with Redux, and this makes things even more straightforward! The idea of "slices" is pretty cool. One thing missing here is how you would handle async actions using Redux Toolkit, and some overview of when you would NOT want to use Redux Toolkit. Easy to get answer to both questions by reading the docs, but it'd still make the guide more complete.
Best video on understanding how redux works and how to implement it by far and I have seen many (not all, just many). Thank you for going over step by step and explaining how it works and how it's done. Phenomenal video, I can't thank you guys enough.
This was such a helpful video, I've watch other 1 hour+ tutorials with redux and still just couldn't wrap my head around getting it to work for my own project, this helped me immensely! Thank you :)
Thanks a lot Shaun, you really care about your subscribers and it shows. Specially when you bring in only very few guest instructors and they're this good.
I followed FCC tutorials before knowing that I shouldn't use "class Component extends React.Component" and instead use hooks, and that I shouldn't use React-Redux and instead use Redux Toolkit. Pain.
This is the first time I touch redux and watch redux related video, this redux toolkit is very similiar to vuex, I think they borrow same concept from each other, I watch through this video and I already have idea how to implement it in react application. Now I want to watch Shaun's redux video and compare original redux and this redux toolkit, it should be fun, thank you for this cool tutorial !!!
After watching several tutorials on this topic, I still couldn't get my head around it. However, within a few mins, I understood the concept of state management and why Redux / Redux-Toolkit is useful. Thanks!
This was such a great tutorial. I was pissed off to have to learn a new redux library, but this is so great compared to the "old school" redux. Thanks!
Oh Shaun you are Amazing that you considered what I said before about Redux that if it is possible to have the new course. I will never ever forget what u did for me and will be thankful forever. You are truly a highly valuable person which there are maybe just a few like you in the world. These things go deep in my heart and one day will show it back for you that how much value it had for me. thank you again my dearest friend.
literally what I needed. we had to learn redux the long way which hurt my brain so much. so we are finally learning redux toolkit but it's been hard trying to separate the syntax and boilerplate for regular redux and redux toolkit. this was freaking perfect!!!! thank you thank you
Wow!! I've been wrestling with this for a couple days and you just made it click so simply in 20 minutes. Definitely going to check out your other videos. Thank you
Thanks for inspiring me to code in Redux while multi-tasking League of Legends. I am encouraged. “Do not fear the shrouded path.” - Zed, ‘League Of Legends’.
This is one of the clearest explanation and I only understood the bigger picture with this tutorial. Others just writing code and not explaining the concept in bird's eye view
I was someone who doesn't like Redux, it needed lots of boilerplates but Redux Toolkit is really amazing and simple. I will use Redux Toolkit for my next project Insha Allah.
at 14:02 where does that counterReducer come from? I see its imported from storejs but there is no counterReducer there. Im confused, can someon eexplain?
Wawwww, a Great Tutorial Video. I really liked the way you explain the concept by practice. Please, Keep working and creating amazing tutorials like this. Thanks alot bro )))
it is possible to create multiple distinct Redux stores in a page, but the intended pattern is to have only a single store. Having a single store enables using the Redux DevTools, makes persisting and rehydrating data simpler, and simplifies the subscription logic.
The last thing I expected to see in a redux toolkit tutorial was a league of legends window open in the toolbar lmao. That game follows me even in my studies...
Great tutorial, can't believeit was this easy. I had to watch hours long videos of redux toolkit but still couldn't get my head around it. Thanks a lot!
Thank you so much for your explanation and I am very appreciated your teaching pattern to understand everyone easily. Thank you so much once again. I am definitely share this and others videos to my connections.
It's really nice and easy to understand. Net Ninja videos are good and also he picked the right person to explain a difficult topic. Anthony did a great job. I enjoyed it a lot. Thanks.
Awesome tutorial. Like Daniel, I was also not happy to have to learn a new redux library, but this is actually great - clean and streamlined. Now just to figure out how to implement my backend express & database into this. Thanks Ninja!
This is a simple good tutorial and is easy to understand. I use Redux and didn't know Redux Toolkit before. So it is like a simplified version of Redux. Like simple Redux 2.0 with less boilerplate code. Thanks for this
Great video Anthony i follow your channel and the net ninja channel for the last 2 years i you deliver great content. I great to see a very good tutorial about RTK
This is far far better than the old implementation of Redux. It works very similarly to how you would write custom React hooks, whereby the state and functions that change the state are compartmentalised into a single file, adhering to the principle of 'optimising for deletion'. The old implementation of Redux required far too much boilerplate code and when coupled with developers using it where completely unnecessary, it made codebases unscalable, hard to read and refactor. Still, it begs the question, why use Redux Toolkit when you can use React's internal state management with custom hooks? The only difference I see is having to pass down state logic through the component tree when using React. I can't decide whether this a pro or con, but introducing redux-toolkit and other redux dependencies means more dependencies to manage and keep up to date, which in turn introduces more risk to security vulnerabilities.
It was an absolute pleasure and an honor to be featured on your channel! You've taught me so much (your passport tutorials are the best!!), and I'm happy to finally be able to give back :)
hey mate, I have a question like let's suppose when component mounts I want to make an API call and get posts from JSONplaceholder and save those in redux store, how will I do that? I will use useEffect and then what will I do? where will I make the fetchAPI call, will it be inside the component and pass data as payload, or use the useEffect and it will call some action and this action will make the fetchAPI call inside reducer.? I might not have worded my question correctly, I am sorry I am not a native speaker. But the whole point is how will I make an API call. And if you have any video on it please leave a link. Thanks a lot, mate.
Haha, I just came from watching your redux toolkit/saga video!
Best redux course
Hi how does arrow function behave here.. will it not use the outer execution context?.
you are speaking too fast! I don't like it. please if you will make a video on your channel don't speak too fast. it makes me confused......
This was soooooo needed!
There wasn't a good tutorial available for Redux Toolkit before this.
I'm working on my first backend portfolio project, but I wanted to use React for the client app and your video just saved me probably many more hours of researching.
Drawings and expanding explanations like here 14:00 are priceless, Thank you!
Now I won’t dread using redux when building my full-stack projects. Toolkit and their new Query APIs are next level. Really allows us to focus on building our apps and letting state not be as important as the apps uI, functionality etc. great stuff’
Wow, I already enjoy working with Redux, and this makes things even more straightforward! The idea of "slices" is pretty cool. One thing missing here is how you would handle async actions using Redux Toolkit, and some overview of when you would NOT want to use Redux Toolkit. Easy to get answer to both questions by reading the docs, but it'd still make the guide more complete.
I wish I could like this video more than once! Redux was a bit of a personal nightmare topic, but this made it so clear and simple! Thank you!
You managed to explain redux in less than 20 minutes and it turned out to be more helpful than an hour long video. Huge thanks..
Best video on understanding how redux works and how to implement it by far and I have seen many (not all, just many). Thank you for going over step by step and explaining how it works and how it's done. Phenomenal video, I can't thank you guys enough.
yayay, I badly needed a video on this topic. Thanks, Shaun and Anthony.
I cannot imagine a simpler explanation for the redux toolkit. Awesome!
This was such a helpful video, I've watch other 1 hour+ tutorials with redux and still just couldn't wrap my head around getting it to work for my own project, this helped me immensely! Thank you :)
You explained it very clearly in just 20 min. Really worth watching bro.
Thanks a lot Shaun, you really care about your subscribers and it shows. Specially when you bring in only very few guest instructors and they're this good.
man.. all the suffering with learning redux just gone forever, we and the new devs should be grateful, this is pure gold
I followed FCC tutorials before knowing that I shouldn't use "class Component extends React.Component" and instead use hooks, and that I shouldn't use React-Redux and instead use Redux Toolkit. Pain.
This is the first time I touch redux and watch redux related video, this redux toolkit is very similiar to vuex, I think they borrow same concept from each other, I watch through this video and I already have idea how to implement it in react application. Now I want to watch Shaun's redux video and compare original redux and this redux toolkit, it should be fun, thank you for this cool tutorial !!!
I have my interview tommorow. Now I'm feeling confident if I asked any question on Redux.Thanks a lot.
Hi Sachin! Are you still looking out for internship/job opportunities? If you are, get in touch?
@@shivanigaddagimath6105 Please let me know more about the opportunity.
@@sachinthakur7518 Can we connect on LinkedIn or gmail for more details?
@@sachinthakur7518 I connected with a profile named Sachin Thakur just now. Is that your profile?
@@shivanigaddagimath6105 Didn't received any request
After watching several tutorials on this topic, I still couldn't get my head around it. However, within a few mins, I understood the concept of state management and why Redux / Redux-Toolkit is useful. Thanks!
This was such a great tutorial. I was pissed off to have to learn a new redux library, but this is so great compared to the "old school" redux.
Thanks!
Fantastic video on how to use Redux in React, and explained in less than 20 minutes!
i love redux and wasnt sure about this new redux-toolkit mess, but now I'm sold thanks alot my friend you are a true React Ninja!!!!!!!!!
Hope it was helpful Justin!
Really a good tutorial. It not only taught redux-toolkit but at the same time showed how to use the documentation. Nice work.
Oh Shaun you are Amazing that you considered what I said before about Redux that if it is possible to have the new course. I will never ever forget what u did for me and will be thankful forever. You are truly a highly valuable person which there are maybe just a few like you in the world. These things go deep in my heart and one day will show it back for you that how much value it had for me.
thank you again my dearest friend.
The League of Legends logo tho. Luv it
So far this is the best explanation that I can found. Thank a lot ❤️
THIS GUY IS LEGIT. everything you need to know about redux in just under 20mins. Wtf !!! 😂🎉❤
literally what I needed. we had to learn redux the long way which hurt my brain so much. so we are finally learning redux toolkit but it's been hard trying to separate the syntax and boilerplate for regular redux and redux toolkit. this was freaking perfect!!!! thank you thank you
You're very welcome! Glad it helped :)
Wow!! I've been wrestling with this for a couple days and you just made it click so simply in 20 minutes. Definitely going to check out your other videos. Thank you
Oh my god. I need this course and you share it! Thank you Ninja!
Thanks for inspiring me to code in Redux while multi-tasking League of Legends. I am encouraged.
“Do not fear the shrouded path.”
- Zed, ‘League Of Legends’.
You're the best! Can't wait to watch it. Redux used to be a nightmare for me until i understood it. Now it's one of my favourite tools
Thank you, so much @NetNinja and @AnthonySistilli. You the goats!
thank you i was an absolute beginner to react redux-toolkit.thanks to you now i understand it
This is one of the clearest explanation and I only understood the bigger picture with this tutorial. Others just writing code and not explaining the concept in bird's eye view
Glad it helped! :)
I was someone who doesn't like Redux, it needed lots of boilerplates but Redux Toolkit is really amazing and simple. I will use Redux Toolkit for my next project Insha Allah.
Finally i have a complete summarized understanding of the redux toolkit. thanks
at 14:02 where does that counterReducer come from? I see its imported from storejs but there is no counterReducer there. Im confused, can someon eexplain?
Wawwww, a Great Tutorial Video.
I really liked the way you explain the concept by practice.
Please, Keep working and creating amazing tutorials like this.
Thanks alot bro )))
Thanks for this video! This is the best tutorial I've seen for Redux Toolkit so far.
it was the best explanation of redux toolkit i've ever seen, thank you so much
Probably the BEST redux toolkit explanation on UA-cam!!
Thanks for watch8ng!
THIS IS DEFINITELY WHAT I NEEDED! THANK YOU VERY MICH!
That was by far the best tutorial and explanation on redux. You told exactly why it is used .Thanks
Thank you!!
Ngl you are THE BEST channel to learn React, React Native, etc. This Redux Toolkit tut is bomb can't wait for more content on this!!!
already watched some Anthony's tutorials and they are really nice. ty.
Yeah, he explains things very well!
it is possible to create multiple distinct Redux stores in a page, but the intended pattern is to have only a single store. Having a single store enables using the Redux DevTools, makes persisting and rehydrating data simpler, and simplifies the subscription logic.
The last thing I expected to see in a redux toolkit tutorial was a league of legends window open in the toolbar lmao. That game follows me even in my studies...
So straightforward and easy to follow. Thank you
The best redux toolkit video over the youtube!
Great tutorial, can't believeit was this easy. I had to watch hours long videos of redux toolkit but still couldn't get my head around it. Thanks a lot!
This is a real tutorial. I have the impression that other youtubers just wanna show they can do something.
Rad, good to see Anthony getting exposure.
Whomever Shaun recommends, I'm subscribing.
Very simple and very helpful. Ready to immediately use it in my project. Nice job!
It is my first tutorial in Redux Toolkit and I really enjoyed your explanations, everything was clear :D Thank you
Awesome refresher of Redux Tookit for me! Thanks man!
Thanks for the Redux Toolkit quick explanation. Now I know how RTK works. Thanks again
Ninja always rocks 🔥
I love your tutorials
Thank you so much for your explanation and I am very appreciated your teaching pattern to understand everyone easily.
Thank you so much once again.
I am definitely share this and others videos to my connections.
Clean tutorial & thanks so much for putting this together. You made my life easier in understanding this so quickly! Thanks.
you are the best.
so far this is the best explanatiory video of redux toolkit.
It's really nice and easy to understand. Net Ninja videos are good and also he picked the right person to explain a difficult topic. Anthony did a great job. I enjoyed it a lot. Thanks.
i have been looking for a way to set redux toolkit for a long time
thank you so much
You're welcome!
wow what a good understanding for redux toolkit in just one video
such a good explanation. way more better using redux toolkit than old school redux.....
wow...amazing tutorial! way to go Anthony! 💪
now that is how you explain redux,,, thhaank you
Wow, it was so easy to undrestand the rtk with your video! nice job.
Awesome tutorial. Like Daniel, I was also not happy to have to learn a new redux library, but this is actually great - clean and streamlined. Now just to figure out how to implement my backend express & database into this. Thanks Ninja!
Thank you so much. Very clear, brief and straight to the point. Thank you once more, Anthony sistilli.
Thanks to both the great instructors. Great fan of this channel.
Thanks for this salient explanation. it was all i needed to understand this stuff.
Very simple explanation of complicated topic. Netninja rocks👍👍
Best explanation ive heard, Anthony is a great instructor
I feel like this is Redux the way it should be. I loved the flexibility of old Redux, but the implementation was a nightmare. This is amazing!
this is the best video ever i have seen on redux
This is a simple good tutorial and is easy to understand. I use Redux and didn't know Redux Toolkit before. So it is like a simplified version of Redux. Like simple Redux 2.0 with less boilerplate code. Thanks for this
Thanks Anthony Sistilli and Net Ninja. Now I know how to use redux-toolkit
Omg Shaun...thank you so much...I was waiting for this
This is game changing , damn. This makes redux way more understandable and less verbose.
Yes. Like Simplified Redux with steroids and easy to understand. Less boilerplate codes and files too :)
This is the best I've found about Redux toolkit.. thank you so much
Great video Anthony i follow your channel and the net ninja channel for the last 2 years i you deliver great content. I great to see a very good tutorial about RTK
Hands down the best introduction to redux out there
Thanks for this tutorial Anthony and Net Ninja. It was really awesome and helpful
What a simple way to explain a difficult concept. Thank you
Simple and straightforward, just perfect!
Straightforward and very good explanation.
Best video so far on redux toolkit.
👍👍👍
Man was queued for league of legends in the background
The brilliant video! The explanation is very simple!
Sugar and spice everything nice, this channel is amazing❤
Great tut , I usually watch only shauns videos but this really is a great one.
nice, simple and straightforward
thank you both for an awesome bit sized, jam packed tutorial. Loved it!!!❤❤❤
Thanks Nickea, glad you enjoyed it!
Simple and a great explanation. Thank you so much.
best redux tutorial, thanks
Gold materials right here:)) Thanks Anthony!
this is a simple and awesome video to learn redux quickly
Great explanation of the topic! Thank you.
This is far far better than the old implementation of Redux. It works very similarly to how you would write custom React hooks, whereby the state and functions that change the state are compartmentalised into a single file, adhering to the principle of 'optimising for deletion'. The old implementation of Redux required far too much boilerplate code and when coupled with developers using it where completely unnecessary, it made codebases unscalable, hard to read and refactor.
Still, it begs the question, why use Redux Toolkit when you can use React's internal state management with custom hooks? The only difference I see is having to pass down state logic through the component tree when using React. I can't decide whether this a pro or con, but introducing redux-toolkit and other redux dependencies means more dependencies to manage and keep up to date, which in turn introduces more risk to security vulnerabilities.
all i can say is... Thank you!!!!! easy to follow straight to the point \m/
Thanks Lyndon!