I'm currently attending your design patterns course. nearly finished with second part. I'm waiting for the 3 part. and I'm really excited about this Redux course, because you know that was missing from your mastering react course. Happy to enroll in this as well. Keep doing the great work Master. Just by my recommendations 4 of my friends are attending your amazing courses. I'm a javascript full stack developer and I got a job in Munich, Germany after watching and practicing your nodejs, react, javascript basic and oop course. I believe you should also provide more courses for those who want to reach the senior level (like CI/CD, AWS, Docker, micro services, UMLs, performance, security ... ). Thanks for the great work.
Let's try and remove 'master' from the 'global scope'. It may have worked in the past but it's now has negative connotations. ;) we are all learning :)
I was going literally mad trying to learn redux. This course really explained the concept in a very simplistic way. I can look at redux now and say, hey, I know what is happening here. Thanks Mosh. First time of watching your tutorial. Looks like the best for me so far.
I thought I was wasting my time watching a tutorial which I knew wasn't the complete thing, but the simplicity and clarity of how you explain kept me watching until the end, totally worth it, thank you
Regarding the comment at 1:14:40 - the "reducer" function is not pure - "lastId" variable from the outer scope is used. Calling "reducer" function twice will not produce the same result. A bit nitpicky but I think it's quite important to note. Great introduction though, shows the gist.
@@flavioespanol8868 Yes, I was rather surprised. Usually you want to pass all the necessary information (including IDs) to the action creator so that they can be included on the payload. The reducer should be fairly "dumb" by comparison.
Mosh, you're absolutely god-like with these tutorials and deep dives. These videos are not short, but the quality of knowledge is an absolute goldmine. I will remember you forever.
*TIMESTAMP* 0:00:00 Introduction 0:01:02 What is Redux? 0:03:20 Pros and Cons of Redux 0:08:49 Is Redux for You? 0:11:18 Setting Up the Development Environment 0:13:07 Course Structure 0:15:32 Function Programming 0:15:59 What is Functional Programming? 0:17:25 Functions as First-Class Citizens 0:20:33 Higher-order Functions 0:22:06 Functional Composition 0:25:45 Composing and Piping 0:28:08 Currying 0:34:17 Pure Functions 0:37:08 Immutability 0:41:22 Updating Objects 0:45:56 Updating Arrays 0:49:51 Enforcing Immutability 0:50:56 Immutable.js 0:54:36 Immer 0:57:30 Redux Intro 0:57:55 Redux Architecture 1:02:58 Your First Redux Application 1:04:43 Designing the Store 1:06:10 Defining the Actions 1:09:37 Creating a Reducer 1:15:50 Creating the Store 1:17:16 Dispatching Actions 1:20:02 Subscribing to the Store 1:22:10 Action Types 1:26:03 Action Creators 1:29:01 Exercise 1:29:18 Solution
Fantastic explanations and examples, you made me fall in love with javascript / react / redux, that I will buy your entire course, right now I'm 49 years old but never stop learning new things, 15 years no one has made code so simple and fun, thank you very much and please please include a full course only for functional programming.....
9:05 Love this comment. Easily where so many businesses get off on the wrong foot when picking tools. Amazing advice every project manager/ developer needs to hear!
Great video! I'm a web dev intern and when we started working with Redux I was completely lost with reducers, actions, selectors, and so on... this really helped me understand.
If would like so say thank you very much! This is the second tutorial I've watched from you and both the tutorials are the best I've ever watched. Very straight forward, full of details, deep, with all the necessary and balanced basics. I didn't have any questions which never happened to me in other tutorials!
Omg. This is the first time I'm going to watch a tutorial premiered. I'm 100% sure that this tutorial will be equally awesome as much as Mosh's other tutorials 😁
So many tutorials out there explaining the same concept but ignoring the minute details here and there, you took out time to build up foundation and explain every word you wrote in-detail. Really helpful !! Thanks
This man really puts everything into the courses and RUclips tutorials and makes everything so real simple for other developers to understand. I really thank you for this. Keep making these tutorials for everyone. 👌
People those who disliked are either those who are jealous of his knowledge or don't have learning interests. Please, understand someone's hardwork and respect it.
@@programmingwithmosh yes , but believe me your teaching methodology is so so amazing, no doubt. Clear cut and straight to the point explanations. I truly respect your knowledge and hardwork from Nepal 🙏
Well said. this is not easy thing to do. If anyone not interested dont watch. I love his tutorials and learnt alot . I refer to all my friends regarding Mosh sessions. Thanks alot for his knowledge sharing and the way he explaining is commendable.
@@programmingwithmosh I wont hit dislike because you did put a lot of teaching into this tutorial, and i value that. But i came here for one and a half hours of redux, and leave with 30 mins of pretty basic redux, i think it is a great course, but a clickbait title
1:14:40 The reducer is not a pure function, the id of the bug will change every time you add a new bug, you are using a global variable inside the function, which doesn't make it a pure function.
The id is predictable because it changes by incrementing the previous id. If it was generated by an external UUID library or by randomizing, then you can say it's not pure
I just have to drop this comment. Sir, you're super good. Your clean and simplified manner of teaching is second to none. You don't just code, you understand it inside-out, and still makes others understand it - Bravo! When I start earning in this line, I'm coming back to say thank you. I am a huge student of yours all the way from Nigeria.
U r So Ri8 Bro..................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
Mosh you are the best instructor I've known for long in my development journey. Thanks for this course, I 'm attending to it 3 years after but no worries, I master everything you teach. You made it so simple for me to begin using this library that has raised questions everywhere. I love the functional programming intro because it made me feel the foundation of the library not just cramming things up in space. You are a great programmer!, no doubt.🤗
i’m learnig React with mosh’s react course. After completing the course i, i’ll take this redux course👍😊 mosh’s teaching style is easy to understand even to japanese learners such as me. thanks!
A fantastic video, as usual ! I learnt so many new things ! Now at last I’m beginning to grasp what functional programming is all about ! You have the gift of explaining things clearly. Thank you so much !
Mosh , I have gone through all of your videos ,but I did not see UI based project thats why I am still unable to use redux in my reactJS project ,I learned Reactjs from tutorial which was fantastic,but I think in redux you should make CRUD Project
I like the way you create your courses. The musics animation sound quality all these make me so relax. never tired of watching your videos. English is my second language and i should say that you are the best in explaining things. Explaining complex developing concepts in easy words is your main cons.
Mosh is a beast! He was the reason I got an A+ in my sql course, it was so confusing to me until I watched his sql 3hr video last fall. This redux video just simplified redux for me. I wish I could afford his courses 😥 Keep up the good work Mosh! 👍
Hi Mosh! Loving this tutorial, I really enjoy how you break things down. But - the starter files provided by the download link above do not include the functional folder you talk about at 00:49:43. Is there another link to download this?
A-MA-ZING. I'm subscribe. I do not usually make tutos. I just try to apply the knew content to the current project. But... I'm making this full as the knowledge is really valuable. Amazing. Cant say more. I can only wish you tons of fortune and money within your carer, man. Go for it
Thank you Mosh for this excellent course! However, at 1:15:34, is the reducer function really pure? I thought it depends on the value of {lastId} which is defined globally.
It's definitely not pure. However, later in the paid course, that variable gets replaced by an ID provided by a back-end server. The ID is passed to the function as part of the `action` parameter, making it pure. Until then you can just "pretend" that the ID is just a unique number that comes with the bug object.
Correct, that reducer was *definitely* not pure. I just about had a hemorrhage reading that code after all that hullabaloo about pure functions, especially when he wrapped up that section about how he had previously talked about pure functions having consistent output based on consistent input, yet it relied explicitly on global state instead of inferring the next correct ephemeral ID from the current state (assuming autoincrement and not a UUID style ID system). 😅
@@christopherk4166 ... right. It's good to have a simpler demo that then is fleshed out further later. But since he was teaching pure functions, he should have just either left that ID empty or inferred it from the current state _and then later_ removed it so that the server could handle it (i.e. a new autoincrement or UUID).
From the tone of your voice to the perfect word and excersices selection you delivery the message with an astonishing accuracy... Great teacher, thank you for your hard work...
finally i understood redux! your videos should be on the top of search results by youtube. one thing you have forget to pass the value of the input param "description" to the description 1:28:03
Hi Mosh, I am a big fan of your courses. I am following your courses from 2017 and learned so many technical concepts from your courses. Your courses help me to get a hold on Language, Frameworks, and libraries like JavaScript, ES6, Angular, React, Redux, etc. I would like to request you to create a course on RxJS and on its applications (If possible along with Redix-observable). It would be great if you work on it and help us to master RxJS concepts so that we can apply them effectively & efficiently on real-world applications. Thank You.
I was following a course on Udemy and i failed to understand redux. but when i watched this video i've learnt aloooooot from the ground up. Now i can continue with the course confortably. I owe you big time MOSH HAMEDANI
Highly knoweledgeable and well explained! Concepts made so simple while explaining with great visuals. I'm basically an Angular developer and most of the videos out there confuses me to the core. But this one inspite of being a React based, was so easy to follow and understand. I feel it would be really helpful to the developers like me, if you could make another video explaining store concepts using NgRx for Angular. Great job, Kudos!
I bought two tutorials of yours from Udemy and I couldn't complete them there, but when I see the same tutorials here on RUclips for free, I grasp more than 90% of it. Thanks for making such a beautiful tutorial.
I was watching your python tutorials that was the first time I watched your video. Your tutorials are best. Congrats on reaching 1 Million subs. 😊😊😊😊 I love to watch your videos. 🇳🇵🇳🇵🇳🇵🇳🇵
Hi Mosh. Thanks for this really great tutorial. I am learning Redux for React Native and also looking at its implementation in Xamarin (C#). I have a correction though. At 1h.11m The reducer you made is not a pure function based on what you mentioned in the beginning and the principle of pure function, due to you using and modifying the external variable lastId. Pure functions should not depend on any external variables and change any external variables. I implement this logic of lastId in the action creator instead. Or is there something I missed or didn’t understand correctly? Thanks again. Best regards. Ali
Exactly. If you would undo and redo a "bugAdded" action, the second added bug would get a higher ID. This shows how hard it is to write pure functions in a language that doesn't enforce it, and also that Redux doesn't verify or really require that reducer functions are pure (but there will be bugs in your application if not).
I really wish one of these really good teachers like Mosh would take a crack at teaching Redux Sagas. I know teaching the thunk pattern is probably the best and most profitable course to make since its the most popular, but Sagas are amazing, yet super confusing. There are 100 redux courses out there that teach thunks, and like 3 that teach Saga. Seems like a hole that is waiting to be filled as more companies (like my own) switch over to Sagas.
You're really good at teaching. One of the best instructors on the internet. Can you please make some tutorial videos about database like mongodb? i hope to see more new videos from u!!!
Hello Mosh, I really am happy that I found this channel and your courses. Keep it on! plus, you have a great accent which makes your videos more understandable than many other.
Hahaha. I really like you Mosh. You are my motivation before I start reading books. Your python course gave me wings before I grabbed a book. You are Mr. Fix It
Hi I am unable to find the starter project code, the link redirects me to Mosh's website but cannot find the starter project to download. Can anyone help?
The pedagogy is simply amazing! THANKYOU!! I was concerned if it was still relevant, although not the libs but knowledge and other information were very much relevant and useful
what a fantastic course!, for the past 1 month i was skipping redux entirely from my project and just define new state all over the place. After I saw your course, i can truly understand redux concept. Can't Thank you enough ✌
Another extremely helpful and easy to follow tutorial by Mosh. Thank you! I love the fact that Mosh goes into great detail, and even explains prerequisites required for the course (in this case, functional programming, immutability, etc.)
Mosh you really have a great talent for explaining things simply and clearly. Thank you for your videos and once I get done with my current course I will definitely take a look at one of yours.
@@programmingwithmosh i watch the tutorial, and i am amazed how you simplified the redux. i remember learning react it was very fun and again you made it mosh. I was learning redux from another tutorials but they just show how to use it in projects but no one explained why and when. Mosh once again you have amazed me with your skills of teaching, i would recommend this course to every beginner in redux.
Thanks a lot Mosh... This is the best Redux tut on the internet I've seen. Your explanations to the concepts made it so easy to wrap my head around it. I've been dodging Redux for a while now until I saw a premiere of you tut and I knew this was going to be great.
Hey Mosh, do you have any plan on making an ASP.NET Core 3.1 and React course? I really love your videos, you are the only one I can understand on youtube.
In the reducer function, isn't the variable lastId you introduced at 1:11:00 a global variable? I thought you mentioned the reducer as a pure function should not rely on a global variable.
Yeah, I caught that too. The function is no longer stateless. I feel like a better solution would be to scan the existing state and add one to the max ID
Dear Mosh, When the number of composition function is large, it looks messy( ex: D(C(B(A(arg)))) ) I found a convenient pipe operator " |> " that can increase readability( arg |> A |> B |> C |> D), but it's still in experimental period.
Mosh you are the heaven of programming, the way you explain concepts you trigger understand button at its quality, I have bought your angular, react, docker I enjoy to the fullest. Your full courses are high encourage for anyone who needs to understand and become the master in programming world. Appreciate your efforts ✨
Why there is no love react button for likes :) , I wanted to give that reaction for this wonderful session. This session really helped me a lot . Thank you sir .
Hi Mosh, I downloaded the redux-starter project from the description under your video but it doesn't contain the functional folder, as you mention in the video. Where do I find this?
I'm currently attending your design patterns course. nearly finished with second part. I'm waiting for the 3 part. and I'm really excited about this Redux course, because you know that was missing from your mastering react course. Happy to enroll in this as well. Keep doing the great work Master. Just by my recommendations 4 of my friends are attending your amazing courses. I'm a javascript full stack developer and I got a job in Munich, Germany after watching and practicing your nodejs, react, javascript basic and oop course. I believe you should also provide more courses for those who want to reach the senior level (like CI/CD, AWS, Docker, micro services, UMLs, performance, security ... ). Thanks for the great work.
@@programmingwithmosh Mr can you give me your WhatsApp number or your Email
Let's try and remove 'master' from the 'global scope'. It may have worked in the past but it's now has negative connotations. ;) we are all learning :)
@@Roatandiving true💯
@@bilalullahkhan5517 I will upload this full course here. ruclips.net/video/v-OSTQvHMZ4/видео.html&ab_channel=TechGuy%21
@@abdulrahmanismailali1064 tf bruh
I was going literally mad trying to learn redux. This course really explained the concept in a very simplistic way. I can look at redux now and say, hey, I know what is happening here.
Thanks Mosh. First time of watching your tutorial. Looks like the best for me so far.
totally agree
I thought I was wasting my time watching a tutorial which I knew wasn't the complete thing, but the simplicity and clarity of how you explain kept me watching until the end, totally worth it, thank you
you have this unique ability to keep people interested even if you are explaining the most dry concepts.
my brain is expanding watching this
Llll
Does that really help?
absolutely
Lol
Samee
Dude! the animation and details in these courses are like no other! You really take it to another level
Yes, but he is not straight forward.
@@mecode7850 explain?
Regarding the comment at 1:14:40 - the "reducer" function is not pure - "lastId" variable from the outer scope is used. Calling "reducer" function twice will not produce the same result. A bit nitpicky but I think it's quite important to note. Great introduction though, shows the gist.
Lol, he spent the whole vid talking about pure functions and didn't mention that 🤦♂️🤦♂️
@@flavioespanol8868 Yes, I was rather surprised. Usually you want to pass all the necessary information (including IDs) to the action creator so that they can be included on the payload. The reducer should be fairly "dumb" by comparison.
Mosh jan, khaily mamnoon for all your tutorials man, very helpful!
Mosh, you're absolutely god-like with these tutorials and deep dives. These videos are not short, but the quality of knowledge is an absolute goldmine. I will remember you forever.
*TIMESTAMP*
0:00:00 Introduction
0:01:02 What is Redux?
0:03:20 Pros and Cons of Redux
0:08:49 Is Redux for You?
0:11:18 Setting Up the Development Environment
0:13:07 Course Structure
0:15:32 Function Programming
0:15:59 What is Functional Programming?
0:17:25 Functions as First-Class Citizens
0:20:33 Higher-order Functions
0:22:06 Functional Composition
0:25:45 Composing and Piping
0:28:08 Currying
0:34:17 Pure Functions
0:37:08 Immutability
0:41:22 Updating Objects
0:45:56 Updating Arrays
0:49:51 Enforcing Immutability
0:50:56 Immutable.js
0:54:36 Immer
0:57:30 Redux Intro
0:57:55 Redux Architecture
1:02:58 Your First Redux Application
1:04:43 Designing the Store
1:06:10 Defining the Actions
1:09:37 Creating a Reducer
1:15:50 Creating the Store
1:17:16 Dispatching Actions
1:20:02 Subscribing to the Store
1:22:10 Action Types
1:26:03 Action Creators
1:29:01 Exercise
1:29:18 Solution
Fantastic explanations and examples, you made me fall in love with javascript / react / redux, that I will buy your entire course, right now I'm 49 years old but never stop learning new things, 15 years no one has made code so simple and fun, thank you very much and please please include a full course only for functional programming.....
Hey Mosh,
Congratulate 1 Million subscribers. See you on 10 million 😉
9:05 Love this comment. Easily where so many businesses get off on the wrong foot when picking tools. Amazing advice every project manager/ developer needs to hear!
Great video! I'm a web dev intern and when we started working with Redux I was completely lost with reducers, actions, selectors, and so on... this really helped me understand.
If would like so say thank you very much! This is the second tutorial I've watched from you and both the tutorials are the best I've ever watched. Very straight forward, full of details, deep, with all the necessary and balanced basics. I didn't have any questions which never happened to me in other tutorials!
Omg. This is the first time I'm going to watch a tutorial premiered. I'm 100% sure that this tutorial will be equally awesome as much as Mosh's other tutorials 😁
So many tutorials out there explaining the same concept but ignoring the minute details here and there, you took out time to build up foundation and explain every word you wrote in-detail. Really helpful !! Thanks
Hey Kapil! Have you ever taken the help of any tutorial to do a project? Would you be interested exploring opportunities in web development?
This man really puts everything into the courses and RUclips tutorials and makes everything so real simple for other developers to understand. I really thank you for this. Keep making these tutorials for everyone. 👌
I was waiting for this. Mosh is the best instructor no matter what he teaches. Also, include reacts hook in your react tutorial.
Been a web dev for 12 years and I'm a huge fan of your videos! Very clear, concise, and super informative.
I swear to God I have been thinking for the past couple of weeks that there should be a Mosh-course on Redux so I can learn it properly! Thanks Man!
People those who disliked are either those who are jealous of his knowledge or don't have learning interests.
Please, understand someone's hardwork and respect it.
@@programmingwithmosh yes , but believe me your teaching methodology is so so amazing, no doubt. Clear cut and straight to the point explanations.
I truly respect your knowledge and hardwork from Nepal 🙏
so it's either or? Bruh you need to learn some respect.
Well said. this is not easy thing to do. If anyone not interested dont watch. I love his tutorials and learnt alot . I refer to all my friends regarding Mosh sessions. Thanks alot for his knowledge sharing and the way he explaining is commendable.
@@programmingwithmosh I wont hit dislike because you did put a lot of teaching into this tutorial, and i value that. But i came here for one and a half hours of redux, and leave with 30 mins of pretty basic redux, i think it is a great course, but a clickbait title
@@programmingwithmosh exactly
1:14:40 The reducer is not a pure function, the id of the bug will change every time you add a new bug, you are using a global variable inside the function, which doesn't make it a pure function.
The id is predictable because it changes by incrementing the previous id. If it was generated by an external UUID library or by randomizing, then you can say it's not pure
dear mosh,
سپاس فراوان برای اینکه همه چی رو ساده میگی😊
I just have to drop this comment. Sir, you're super good. Your clean and simplified manner of teaching is second to none. You don't just code, you understand it inside-out, and still makes others understand it - Bravo!
When I start earning in this line, I'm coming back to say thank you.
I am a huge student of yours all the way from Nigeria.
i've been learning web dev for about 8 months now and Redux is the most confusing thing out of everything
Easy-Peasy (Abstracted Redux) Library will make life easier on you
Do you understand it now?
@@indestructible-today yes (◔‿◔)
@@zakur0hako NICE
U r So Ri8 Bro..................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
the best one ever made on redux/ react especially the introduction knowledge he give at the begging about functional programming , curry and pipe
Huuuuugggeee respect for all of these animations + clean and clear explanations. Thank you !
Mosh you are the best instructor I've known for long in my development journey.
Thanks for this course, I 'm attending to it 3 years after but no worries, I master everything you teach.
You made it so simple for me to begin using this library that has raised questions everywhere.
I love the functional programming intro because it made me feel the foundation of the library not just cramming things up in space.
You are a great programmer!, no doubt.🤗
i’m learnig React with mosh’s react course.
After completing the course i, i’ll take this redux course👍😊
mosh’s teaching style is easy to understand even to japanese learners such as me. thanks!
頑張ってください。僕も日本でITの仕事やってます。Reactjs面白いですね。
A fantastic video, as usual ! I learnt so many new things ! Now at last I’m beginning to grasp what functional programming is all about ! You have the gift of explaining things clearly. Thank you so much !
Mosh , I have gone through all of your videos ,but I did not see UI based project thats why I am still unable to use redux in my reactJS project ,I learned Reactjs from tutorial which was fantastic,but I think in redux you should make CRUD Project
Did you check out his course where he integrates Redux into React?
@@neo6259 sorry we Indians need everything for free xD
@@kiranbabu9267 Your statement is not true. I am Indian. I and all my friends have paid and bought several courses of Mosh and Max.
@@saradhagirish8329 im gonna check who tf asked
@@neo6259 test
It's so cool that mosh is giving exercises to solve
1:14:58 Actually because of id: ++lastId the reducer is not a pure function.
I just thinking the same thing.
Yes I am on the same page
I like the way you create your courses. The musics animation sound quality all these make me so relax. never tired of watching your videos. English is my second language and i should say that you are the best in explaining things. Explaining complex developing concepts in easy words is your main cons.
Mosh is a beast! He was the reason I got an A+ in my sql course, it was so confusing to me until I watched his sql 3hr video last fall. This redux video just simplified redux for me. I wish I could afford his courses 😥 Keep up the good work Mosh! 👍
Same to me with oop course
I watched his react native course and passed an interview effortlessly
Mosh saves the day again! Thank you! You are such a skilled teacher.
Hi Mosh! Loving this tutorial, I really enjoy how you break things down. But - the starter files provided by the download link above do not include the functional folder you talk about at 00:49:43. Is there another link to download this?
A-MA-ZING. I'm subscribe. I do not usually make tutos. I just try to apply the knew content to the current project. But... I'm making this full as the knowledge is really valuable. Amazing. Cant say more. I can only wish you tons of fortune and money within your carer, man. Go for it
Thank you Mosh for this excellent course! However, at 1:15:34, is the reducer function really pure? I thought it depends on the value of {lastId} which is defined globally.
It's definitely not pure. However, later in the paid course, that variable gets replaced by an ID provided by a back-end server. The ID is passed to the function as part of the `action` parameter, making it pure. Until then you can just "pretend" that the ID is just a unique number that comes with the bug object.
Correct, that reducer was *definitely* not pure. I just about had a hemorrhage reading that code after all that hullabaloo about pure functions, especially when he wrapped up that section about how he had previously talked about pure functions having consistent output based on consistent input, yet it relied explicitly on global state instead of inferring the next correct ephemeral ID from the current state (assuming autoincrement and not a UUID style ID system). 😅
@@christopherk4166 ... right. It's good to have a simpler demo that then is fleshed out further later. But since he was teaching pure functions, he should have just either left that ID empty or inferred it from the current state _and then later_ removed it so that the server could handle it (i.e. a new autoincrement or UUID).
From the tone of your voice to the perfect word and excersices selection you delivery the message with an astonishing accuracy... Great teacher, thank you for your hard work...
hey mosh you gets 1 million subscribers very fast after lunch redux course. that will be super exciting
finally i understood redux! your videos should be on the top of search results by youtube. one thing you have forget to pass the value of the input param "description" to the description 1:28:03
Hi Mosh, I am a big fan of your courses. I am following your courses from 2017 and learned so many technical concepts from your courses. Your courses help me to get a hold on Language, Frameworks, and libraries like JavaScript, ES6, Angular, React, Redux, etc.
I would like to request you to create a course on RxJS and on its applications (If possible along with Redix-observable). It would be great if you work on it and help us to master RxJS concepts so that we can apply them effectively & efficiently on real-world applications.
Thank You.
I was following a course on Udemy and i failed to understand redux. but when i watched this video i've learnt aloooooot from the ground up. Now i can continue with the course confortably. I owe you big time MOSH HAMEDANI
Highly knoweledgeable and well explained! Concepts made so simple while explaining with great visuals. I'm basically an Angular developer and most of the videos out there confuses me to the core. But this one inspite of being a React based, was so easy to follow and understand.
I feel it would be really helpful to the developers like me, if you could make another video explaining store concepts using NgRx for Angular.
Great job, Kudos!
Directly to the point! After seeing many other related videos, finally I could use Redux in my Angular APP. Very good video Mosh 😄
I bought two tutorials of yours from Udemy and I couldn't complete them there, but when I see the same tutorials here on RUclips for free, I grasp more than 90% of it.
Thanks for making such a beautiful tutorial.
I was watching your python tutorials that was the first time I watched your video.
Your tutorials are best.
Congrats on reaching 1 Million subs.
😊😊😊😊
I love to watch your videos.
🇳🇵🇳🇵🇳🇵🇳🇵
Fantastic tutorial , really enjoyed it. Best redux tutorial on RUclips 🎉
Hi Mosh. Thanks for this really great tutorial. I am learning Redux for React Native and also looking at its implementation in Xamarin (C#). I have a correction though. At 1h.11m The reducer you made is not a pure function based on what you mentioned in the beginning and the principle of pure function, due to you using and modifying the external variable lastId. Pure functions should not depend on any external variables and change any external variables. I implement this logic of lastId in the action creator instead. Or is there something I missed or didn’t understand correctly? Thanks again. Best regards. Ali
Came here to say this!
Exactly. If you would undo and redo a "bugAdded" action, the second added bug would get a higher ID. This shows how hard it is to write pure functions in a language that doesn't enforce it, and also that Redux doesn't verify or really require that reducer functions are pure (but there will be bugs in your application if not).
Hands down the best tutorial on Redux. Thanks Mosh.
I really wish one of these really good teachers like Mosh would take a crack at teaching Redux Sagas. I know teaching the thunk pattern is probably the best and most profitable course to make since its the most popular, but Sagas are amazing, yet super confusing. There are 100 redux courses out there that teach thunks, and like 3 that teach Saga. Seems like a hole that is waiting to be filled as more companies (like my own) switch over to Sagas.
Same thoughts here. There arent many good redux saga courses
this I found to be good
ruclips.net/video/eUMbH6X_Adc/видео.html
The best basic course of Redux in RUclips. Thanks Mosh Hamedani
currying blew my mind. never knew you could do that with js
Awesome!!! This is one of the best tutorial videos I have ever watched. Thanks a lot.
I've finish this course for month, It was worth.
Excellent introduction to Redux. Kudos 👍🏾
You're really good at teaching. One of the best instructors on the internet. Can you please make some tutorial videos about database like mongodb? i hope to see more new videos from u!!!
Hello Mosh, I really am happy that I found this channel and your courses. Keep it on! plus, you have a great accent which makes your videos more understandable than many other.
Hahaha. I really like you Mosh. You are my motivation before I start reading books. Your python course gave me wings before I grabbed a book. You are Mr. Fix It
You are a genius. No one can't explain redux more clear than you just did. Congratulations.
Hi I am unable to find the starter project code, the link redirects me to Mosh's website but cannot find the starter project to download. Can anyone help?
I enjoyed this whole tutorial. You are such a good instructor.
Hey Aditya! Are you a fresher and open to opportunities in web development currently? Have you created any projects in JavaScript frameworks?
57:34 Intro to Redux starts there. Previously is an introduction about functional programming, currying, ...
Thanks buddy
Thanks man
You are a genius,i strongly recommend this video for anyone who wants to deep understand Redux.much appreciate.
I have a single heart and you have won it every-time .
#Respect #mosh
The pedagogy is simply amazing!
THANKYOU!!
I was concerned if it was still relevant, although not the libs but knowledge and other information were very much relevant and useful
I can't believe this course is free. I hope Mosh finds a good way to monetize this and other such good videos. Thank you Mosh
what a fantastic course!, for the past 1 month i was skipping redux entirely from my project and just define new state all over the place. After I saw your course, i can truly understand redux concept. Can't Thank you enough ✌
Another extremely helpful and easy to follow tutorial by Mosh. Thank you! I love the fact that Mosh goes into great detail, and even explains prerequisites required for the course (in this case, functional programming, immutability, etc.)
The best course i have seen in the internet, The way you are explaining is so beautiful,
Can't Wait.. super excited for this. ✌ Also, 1M subs after this Premier👍
The clarity of this video was so refreshing. I ended up purchasing the course. We should support *quality* digital content.
Mosh is my favourite living human being.
@@programmingwithmosh
You are awesome!
Mosh you really have a great talent for explaining things simply and clearly. Thank you for your videos and once I get done with my current course I will definitely take a look at one of yours.
Hey Mosh, how are you? Reminder is set and all set to watch and be amazed with your new Redux course. Thank you so much mosh.
@@programmingwithmosh i watch the tutorial, and i am amazed how you simplified the redux. i remember learning react it was very fun and again you made it mosh. I was learning redux from another tutorials but they just show how to use it in projects but no one explained why and when. Mosh once again you have amazed me with your skills of teaching, i would recommend this course to every beginner in redux.
Thanks a lot Mosh... This is the best Redux tut on the internet I've seen. Your explanations to the concepts made it so easy to wrap my head around it. I've been dodging Redux for a while now until I saw a premiere of you tut and I knew this was going to be great.
@@programmingwithmosh Sure!
I will upload this full course here. ruclips.net/video/v-OSTQvHMZ4/видео.html&ab_channel=TechGuy%21
Hey Mosh, do you have any plan on making an ASP.NET Core 3.1 and React course? I really love your videos, you are the only one I can understand on youtube.
The best redux tutorial if found so far
In the reducer function, isn't the variable lastId you introduced at 1:11:00 a global variable? I thought you mentioned the reducer as a pure function should not rely on a global variable.
Yeah, I caught that too. The function is no longer stateless. I feel like a better solution would be to scan the existing state and add one to the max ID
I love how well structured and complete you explain these concepts.
Andrew Mead's more structured and his redux tutorial under his React course is very easy to understand.
I've been putting off learning redux for a while now, but I guess I'll have to do it now. 👣🧠🤓
Hi mosh, are you planning on making the third part of the design patterns course?
Thank you Mosh for this great course. I am curious, what font are you using for coding this course?
"FIRA CODE"
@@dgshinoda Thanks for the response. But it's too late :D
I'm super excited to keep learning now. Thank you.
Really Mosh deserve 5M subscribers..
who are agree with me hit likes..
amazing tutorial :) thankss Mosh
Starter project file is not downloading!
Excellent presentation skills! You break down redux so eloquently that I wished something like this was uploaded much earlier. Thank you.
If i had wife i would adopt Mosh , he looks like genuinely good guy ...
lol
That's just weird
Dear Mosh,
When the number of composition function is large, it looks messy( ex: D(C(B(A(arg)))) )
I found a convenient pipe operator " |> " that can increase readability( arg |> A |> B |> C |> D),
but it's still in experimental period.
Wow just when i thought i wanna learn redux
Mosh you are the heaven of programming, the way you explain concepts you trigger understand button at its quality, I have bought your angular, react, docker I enjoy to the fullest. Your full courses are high encourage for anyone who needs to understand and become the master in programming world. Appreciate your efforts ✨
Why there is no love react button for likes :) , I wanted to give that reaction for this wonderful session. This session really helped me a lot . Thank you sir .
super clear explanations, keep it up Mosh
So far this is one of the best tutorials I found on redux in a beginner friendly way. Hats off to you man for providing such contents for free.
Wow great tutorial thanks for sharing 👍👌👌👌👌👌👌👌👌👌👌👌 and congratulations for your subscriber's 1M🎉🎉🎉🎉
Hi Mosh, I downloaded the redux-starter project from the description under your video but it doesn't contain the functional folder, as you mention in the video. Where do I find this?
Same here bro!
The way you explain things is amazing. Just got your course. Thanks a lot !