React Redux Full Course for Beginners | Redux Toolkit Complete Tutorial

preview_player
Показать описание

This React Redux Full Course for Beginners is a complete tutorial full of 4 hours of React and Redux Toolkit code and instruction to help you learn state management with Redux. Think of this React Redux full course tutorial as a video textbook with 7 clearly defined chapters.

⭐ Become a full-stack web dev with Zero To Mastery Courses:

React Redux Full Course for Beginners | Redux Toolkit Complete Tutorial

(00:00:00) Introduction
(00:00:51) Chapter 1: Redux Toolkit Intro
(00:20:10) Chapter 2: App Structure & Data Flow
(01:04:22) Chapter 3: Async Logic & Thunks
(01:33:48) Chapter 4: Blog Project
(02:13:04) Chapter 5: Performance Optimizations
(02:46:50) Chapter 6: RTK Query Intro Project
(03:10:02) Chapter 7: Advanced Redux & RTK Query

📚 Tutorial References:

📚 General Redux Toolkit References:

🔗 ES7 React JS Snippets Extension for VS Code:

🔗 React Dev Tools Extension for Chrome:

📚 General React References:

✅ Follow Me:

Was this React Redux Toolkit full course for beginners helpful? If so, please share. Let me know your thoughts in the comments.

#react #redux #course
Рекомендации по теме
Комментарии
Автор

Hiya! I'm the primary Redux maintainer and creator of Redux Toolkit. Thank you for putting this video together! In fact, I see that the source code is straight from the docs "Redux Essentials" tutorial I wrote... and that's GREAT! That means it's the same examples I want people to learn from! :)

I've been thinking of doing a video series based on the "Essentials" tutorial myself at some point, and I still might. (Eventually! When I have time! HAH!)

But until then, this appears to be a great quick intro to Redux Toolkit and React-Redux, the way we _want_ people to learn and use them today.

So Dave, thank you for taking the time to make this video!

markerikson
Автор

Dave you're a godsend, you take from your time and make these masterful videos to teach us how to code. Other teachers should be like you. If there's anyone who contributed a lot to this world's future by raising a lot of skilled coders, it'll be you, thanks a lot! ❤️🙏

ibrahimal-nuaimi
Автор

I paused the video just to tell you're an amazing instructor. I can't believe I watched the whole course for free! I'll definitely recommends your channel to my friends. The amount of time and effort you make this video, you're truly a godsend.

rjevangelista
Автор

Thank you Dave, I can't believe you are putting such an amazing tutorial with simplicity for free on youtube. other creators make things complicated to show that they know something which is not true but only confuse learners.

mi
Автор

For those of us in 2024, you may need this bit of additional code for part 3 to filter out the duplicate posts from the API. Not sure what happened, but I am getting 2-4 of each posts in my request and I copied exactly from the source code.
let content
if (postStatus === "loading") {
content = <p>"Loading..."</p>
} else if (postStatus === "succeeded") {
const orderedPosts = posts
.slice()
.sort((a, b) => b.date.localeCompare(a.date))

const preContent = orderedPosts.filter((val, i) => {
if (i !== orderedPosts.length - 1) {
return val.id !== orderedPosts[i + 1].id
}
return val
})
content = preContent.map((post) => (
<PostsExcerpt key={post.id} post={post} />
))
} else if (postStatus === "failed") {
content = <p>{error}</p>
}

jacobburgo
Автор

Given that I am an hour away from completing your React course(it is really nice), which I take daily from 4:30 am to 7:00 am for a month now, this Redux tutorial will be another nice tutorial to solidify my React knowledge.

dev-seremba
Автор

you are actually a generous man beside teaching, you also foster me to read the document and find out the way to learn another stack by myself. Thank you Dave

nguyenanh-vtjv
Автор

sir, I am Indian doing self study for web development, & you are the best resource that I found on internet for web dev.
Thanku very much sir 🙏🙏🙏🙏🙏

sinnis_
Автор

Well i simply wanted to learn Authentication in React.... and ended up watching Node 7 hours Course, React 9 Hours Course and right know learning Redux 4 hours course. Life can be surprising !!!
I am so happy that I have opportunity to learn from well organized tutorials, and don't have to bother about outdated knowlage. <3
Thanks Dave

imigi
Автор

As a beginner in redux, I've got complete disorientated after the first lesson. The second lesson has too much information without explanation and I expect the rest of them to be the same. After all, I appreciate the time spent doing the video, but this guide is for more advanced than beginner people.

ivangoranov
Автор

Dave, This tutorial is perfect for beginners and your explanation is good to get understanding. The topics you are covered are most asked for job interview. Thank you I have learnt redux with this video and I just need to contribute in projects.

Igris-xfol
Автор

This channel brings the best content there is out there. Every time I need a specific content I come here to see if there is an explanation of it.

GabrielMartinez-ezue
Автор

Thank you too much Dave, there isn't much tutorials on the internet about redux toolkit, I've got troubles learning redux toolkit with typescript, specially data fetching part, could you make tutorials on that topic, thanks again for your effort!

adriandev
Автор

Thank you Dave! You have no idea how helpful this series has been

happyfox
Автор

WOW! Exactly what I needed, just on the right time! :D Thank you so much for such great content and dedication to share your knowledge! 👏

ebratz
Автор

57:11 sort by date
1:09:50 createAsyncThunk
1:29:00 ['array', 'apple', 'fruit'].every(Boolean)
1:31:25 redux-toolkit add unwrap()
2:55:00 RTK query -> isLoading, isSuccess, isError, error

hyphamne
Автор

Same thing in Typescript and we have perfection. Thanks Dave!

Boninpo
Автор

Just finished it right now in 4 days and I was really needing to learn redux for an application that I am creating and in the of this I am really sure I came to the right place... Congrats Sir @Dave Gray

uanelacomo
Автор

this course is really really good but i wont recommend to absolute beginners, because the guy explains things nicely but he kinda assumes that most of us already know some basic of react-redux and reduxtoolkit .This video was definitely good for me because already watched some tutorials before jumping onto this video .This video will definitely helps those guys who have some what knowledge of reduxtoolkit
thanks a bunch and awesome tutorials🔥🔥🔥🔥🔥

siddharthpunmiya
Автор

Good day Dave Gray, what a nice redux toolkits tutorial, but I have a comment on the way majority of you expert programmers do teach programming, this is something practical, it would be better if you have an application you want to clone, and then put it aside, work with the documentation, as you are teaching, lets know the reason why you are using particular hooks, I think by that, no body will come here and feel like "oh no am not gaining anything here", because as you are writing the codes without documentation makes it a little bit difficult, because I personally feel like that, can't talk about other If you are writing the code with documentation, then everybody will flow, and know the reason why you are using a particular hooks

toheebalawode
visit shbcf.ru