Note to everyone watching: if you ever see your browser spin-waiting as seen in some points in this video, that's usually an indication that the app isn't completing a path through your middleware or route handlers. Sometimes it's a missing call to next(), like shown here. Sometimes there's a code path through a route handler that doesn't call a res.end(), res.json(), or res.whatever().
Great video! You may be one of the few that totally explains Express middleware. Also I agree that understanding middleware will help make you a better Express Developer. I feel like a better Express Dev already
sure , because express itself build on 2 concepts first is middleware function second is callback functions . if you comfortable with these concepts so you good to go
Zach! Brotha! You have single-handedly demystified everything surrounding Express and Passport for me. Something literally every major js tutorial youtuber has failed to do. So glad I found you man, thanks again. Subbed.
I have been trying to understand middleware concept ,watched several tutorial ,this explains everything perfectly and all my doubt cleared.its the best explanation on RUclips after watching all explanation on middleware
Bro I've watched so many videos on Express middleware and NONE of them covers the concepts like you do. They are all just spitting out code without explaining WHY things work the way they do. I found the error handling and next() explanations extremely helpful. Thank you!
Nice, that’s definitely the goal of this channel. I want to show 1) why something works and 2) how I figured it out. Glad to hear you’re getting that out of it!!
Thank you very much for helping to understand the middlewares in express. I have been confusing in understanding the middlewares since last a couple of months and today you helped me to understand this concept very well. Thank you again.
After reading/watching from multiple sources, finally someone who teaches this concept in a way that I get it!!!! Thanks Zach!!! Your teaching abilities are amazing!!! Props!!!!
Zach..Brother....!! Under 10k subscribers for this channel, unbelievable . I just don't understand this world sometimes. You solve mysteries like none other!!
Thank you very much for the time and effort you invest into making these videos. They are high quality, and you're the first developer on RUclips I've actually seen explain these things. Thanks again.
Something that's really important, and that you didn't mention in this tutorial, is that next() is like a recursive function call, in that it also `unwraps` (unless a later middleware `return`s before it gets a chance to)... What I mean by that is, any code you have that's placed AFTER the next() statement will be run once the last middleware has been reached. Pseudo code example: middleware1 log(1) next() log(2) middleware2 log(3) Would result in: 1 3 2 Being logged.
Yep that’s a great one! Definitely have to be careful with that, I generally throw a return statement before calling next() if there’s code that comes after it that I don’t want to run
Wow excellent explanation of the topic. I have been scratching my head since last week. searching all over the internet to find a simple explanation of node. express and server, but explanations over the internet are filled with jargons that only experienced developers can understand. Keep sharing such type of excellent content, it means a lot for people like me. Liked and Subscribed.
Great job! The one thing that I still haven't seen demonstrated in any of these Express middleware videos is content negotiation, something that can return an error too, such as a 406 or a 415.
This is the best video I ever watched. despite watching so many videos I lost my head on learning middleware but you have cleared all my doubts. I am your permanent sub now.
it was an wonderful explanation. I've been struggling all day today to understand this, you made it so simple. I could finally connect al lthe dots.Thankyou so much
Bro! I am very thankful for this video, not just because such a video is available because of you, but also the time you took to explain everything seamlessly.
Really great video! I have been using middleware already but after just simply watching this video I feel like I truly have an understanding of how they work.
WOW, Thank you Zach! I love seeing the new group of instructors, they are really good! I am a new subscriber now, I hope more people discover your channel! The only feedback I have, is I think your volume should be a little higher. I heard it fine, but I had to put up the volume to its highest level on the video itself and my laptop and it was perfect, but I was in a quiet room, other than that it was great. I am going to checkout the Passport videos next!
Awesome job, finally someone taught me the REAL basic to build my castle of express upon, THANKS A LOT, no mattter how much I thank you it will never be enough
man you are a phenomenal after tons of videos I've watched you explain the topic in 30 minutes and add on them the whole express framework keep up your great work. wish to you all the best ❤🤟
Damn thank you so much man. I just recently started learning about the backend of things, specifically I just started with Express.js and man, this definitely is a bit more difficult than I anticipated. The middleware concept had me initially so confused. But I just finished this entire video and saw your RUclips Header Image, I definitely must say, after watching this video, this hard concept has FINALLY clicked 😄 Thank you so much man! Overall I think you delivered this extremely well. The general pace and simple examples with thorough explanations really add value.
You're doing a very good job. I have skimmed through your videos in this video's playlist, at first, I supposed that I already knew it, but your explanation makes me clearer understood. However, I have to increase the video play speed to 1.5x. Last word, thanks! :D
Myself using Node JS and Express pretty extensively but your video given a great insight specially on express middlewares, for sure this will help me to optimize my code..great work dude cheers and gud luck with your future videos once again great stuff:-)
So much detailed explanation . Blessed to come across your tutorial. Great job. Please keep posting like this. You are going to take over the express tutorial.
This was excellent, a very clear and understandable explanation. I'm in my 2nd year of a degree with 2/3 computer science classes. One of the classes I've been studying since October has had me writing and extending a couple (a bookshop which we extended fortnightly for 6 months and a nutritional app/recipe builder) of Node/Express apps which serve ejs templates and also serve as APIs for database operations (experimented with MongoDB & mySQL on different assignments). I've got good scores all year but haven't properly understood middleware until now.
@@zachgoll I came across your channel tying to figure out session management for another university project. I have a Vue app hosted on Heroku (served by an Express instance) and it uses an Express API I wrote for db (MySQL) operations, which is CORS configured to accept HTTP requests from the Vue app and is hosted on a virtual machine on my university departmental server. Hopefully I'll slowly figure it out from your Passport authentication series. These videos are great, thanks for the time you've clearly put into creating them
In addition, I'd also keep an eye on my #fullstackroadmap series. I will be covering these topics over the next couple of weeks through building an E-Commerce app. Here's the playlist - ruclips.net/video/ZZJT5uskuvI/видео.html
@@zachgoll Thanks, I expect I'll check those out at some point in future. Just had a quick look at what's in the playlist and by the time you get to session management, it might be too late for my purposes. But I reckon i'll figure it out from your Node/Passport auth series
Thank you so much, I was so confused until today that I switched to long polling for my chat app just cause I didn't really get the real flowcharts although my socket io application is working just fine.. this is the best tutorial on this topic and explains everything that is required, others use too many middlewares or middlewares along with templating engines and other cool technologies..
Fantastic explanation! Now I have a much better understanding when it comes to what happens when I app.use() libraries like bodyParser, Helmet, Cors and so on...
Note to everyone watching: if you ever see your browser spin-waiting as seen in some points in this video, that's usually an indication that the app isn't completing a path through your middleware or route handlers. Sometimes it's a missing call to next(), like shown here. Sometimes there's a code path through a route handler that doesn't call a res.end(), res.json(), or res.whatever().
yeah .. learned that hard way ! (took me a week to figure out )
This is the only video in youtube that you can easily understand what is middleware is
Great video! You may be one of the few that totally explains Express middleware. Also I agree that understanding middleware will help make you a better Express Developer. I feel like a better Express Dev already
sure , because express itself build on 2 concepts first is middleware function second is callback functions . if you comfortable with these concepts so you good to go
Zach! Brotha! You have single-handedly demystified everything surrounding Express and Passport for me. Something literally every major js tutorial youtuber has failed to do. So glad I found you man, thanks again. Subbed.
One of the few tutorial makers who create understandable ones. You deserve more views.
The guy just gives concepts, rather than giving "how to do this" or "how to do that" tutorials.... Love from Pakistan
This is the best resource for understanding Express middleware on the whole internet
I have been trying to understand middleware concept ,watched several tutorial ,this explains everything perfectly and all my doubt cleared.its the best explanation on RUclips after watching all explanation on middleware
Such understandable explanations. I love that he fully explains how and why things work.
Bro I've watched so many videos on Express middleware and NONE of them covers the concepts like you do. They are all just spitting out code without explaining WHY things work the way they do. I found the error handling and next() explanations extremely helpful.
Thank you!
Nice, that’s definitely the goal of this channel. I want to show 1) why something works and 2) how I figured it out. Glad to hear you’re getting that out of it!!
I am at 12:17 but already liking it. Thank a lot Zach for the good explanations.
I like your teaching very much! it is clear, calm. thank you so much, I've learnt a lot from you
Really appreciate the longer videos like these that really dig into the details. Thanks again so much! Subscribed.
Thank you very much for helping to understand the middlewares in express. I have been confusing in understanding the middlewares since last a couple of months and today you helped me to understand this concept very well. Thank you again.
Before this series I was dumb enough to not know, what I didn't know. Absolute legendary explanations, thank you very much!
I dont know how u cleared my doubts that i have been confusing my myself with......but yaah...ur magic worked....hatsoff mann.....love from India ❤️
I've watched several videos explaining express.js...and this video is the most clear and informative one for me. Thank you so much :D
Wowww, I have been working with middlewares without actually understanding it in such details...THANK YOU!!!!!!!!!! My Computer Professor I never had
Wow!!! Now this is an in-depth guide to express middleware.
After reading/watching from multiple sources, finally someone who teaches this concept in a way that I get it!!!! Thanks Zach!!! Your teaching abilities are amazing!!! Props!!!!
Zach..Brother....!! Under 10k subscribers for this channel, unbelievable . I just don't understand this world sometimes. You solve mysteries like none other!!
Really appreciate it, we’re almost there though!!
Thank you very much for the time and effort you invest into making these videos. They are high quality, and you're the first developer on RUclips I've actually seen explain these things. Thanks again.
You're very welcome!
waiting for such detailed explanation from a long time, my quest is finally over !
Something that's really important, and that you didn't mention in this tutorial, is that next() is like a recursive function call, in that it also `unwraps` (unless a later middleware `return`s before it gets a chance to)... What I mean by that is, any code you have that's placed AFTER the next() statement will be run once the last middleware has been reached.
Pseudo code example:
middleware1
log(1)
next()
log(2)
middleware2
log(3)
Would result in:
1
3
2
Being logged.
Yep that’s a great one! Definitely have to be careful with that, I generally throw a return statement before calling next() if there’s code that comes after it that I don’t want to run
Amazing! It should be the first thing to understand and master, congrats Zach!
Wow excellent explanation of the topic. I have been scratching my head since last week. searching all over the internet to find a simple explanation of node. express and server, but explanations over the internet are filled with jargons that only experienced developers can understand. Keep sharing such type of excellent content, it means a lot for people like me. Liked and Subscribed.
Very helpful. This whole series is great.
This guy really deserve to be noticed by "so called" developer community on RUclips
Wow! never thought I could understand this in one video. Definitely subscribing!
Yeeaaah finally i get a great explanation about Express middleware , no boring ! Thanks a lot Mr.Zach
This is perfect!
I subscribed immediately after the first 5 minutes of this video. He explained everything in detail.
Thanks for this great video.
Great job! The one thing that I still haven't seen demonstrated in any of these Express middleware videos is content negotiation, something that can return an error too, such as a 406 or a 415.
This is the best video I ever watched. despite watching so many videos I lost my head on learning middleware but you have cleared all my doubts. I am your permanent sub now.
Glad it was the video that clicked :)
This video is gold. Definitely came away knowing so much more about middleware. Thanks for explaining it so well.
A very brain friendly explanation, keep up the good work
it was an wonderful explanation. I've been struggling all day today to understand this, you made it so simple. I could finally connect al lthe dots.Thankyou so much
The error handling part was amazing. Thanksss
Bro! I am very thankful for this video, not just because such a video is available because of you, but also the time you took to explain everything seamlessly.
Really great video! I have been using middleware already but after just simply watching this video I feel like I truly have an understanding of how they work.
Very much needed video. Thank you very much.
WOW, Thank you Zach! I love seeing the new group of instructors, they are really good! I am a new subscriber now, I hope more people discover your channel! The only feedback I have, is I think your volume should be a little higher. I heard it fine, but I had to put up the volume to its highest level on the video itself and my laptop and it was perfect, but I was in a quiet room, other than that it was great. I am going to checkout the Passport videos next!
unrated tutorials, no way this is a free course, thanks!
I wish u always keep sharing stuff like this, so fundamental, the series is gold ! thx
Magic! Thank you very much for this video Zach !!! Your channel is awesome. Thank you for all your videos.
Awesome job, finally someone taught me the REAL basic to build my castle of express upon, THANKS A LOT, no mattter how much I thank you it will never be enough
man you are a phenomenal
after tons of videos I've watched
you explain the topic in 30 minutes and add on them the whole express framework
keep up your great work. wish to you all the best ❤🤟
Nicest thing i have ever seen for express
Damn thank you so much man. I just recently started learning about the backend of things, specifically I just started with Express.js and man, this definitely is a bit more difficult than I anticipated. The middleware concept had me initially so confused. But I just finished this entire video and saw your RUclips Header Image, I definitely must say, after watching this video, this hard concept has FINALLY clicked 😄 Thank you so much man! Overall I think you delivered this extremely well. The general pace and simple examples with thorough explanations really add value.
Simple as that. loved the explanation and going to watch remaining parts instead of a course which I actually bought. Thanks man.
I really needed this video. It clears up so many questions!
Yup, I'm in love lol thanks for series, it's a masterpiece. Appreciate you man
Superb .. I know what is middleware earlier .. they are good as well .. but yours is deep .. loved it
Thanks for the video 😊
This sir, is by far the best explanation I have ever seen since I started learning programming. Thank you x3000!
I feel like an express guru right now 🤗
You're doing a very good job. I have skimmed through your videos in this video's playlist, at first, I supposed that I already knew it, but your explanation makes me clearer understood. However, I have to increase the video play speed to 1.5x. Last word, thanks! :D
Awesome! Glad you got some value in them. Can totally understand the 1.5x speed; I do that on most RUclips programming tutorials too 😁
Myself using Node JS and Express pretty extensively but your video given a great insight specially on express middlewares, for sure this will help me to optimize my code..great work dude cheers and gud luck with your future videos once again great stuff:-)
This is a great series Zach. Thank you so much for the effort! It's really high quality and useful. =)
This is nothing but best, who tf will even dislike this video?
So much detailed explanation . Blessed to come across your tutorial. Great job. Please keep posting like this. You are going to take over the express tutorial.
Great video
It's very clear and informative
Thanks!
This was excellent, a very clear and understandable explanation. I'm in my 2nd year of a degree with 2/3 computer science classes. One of the classes I've been studying since October has had me writing and extending a couple (a bookshop which we extended fortnightly for 6 months and a nutritional app/recipe builder) of Node/Express apps which serve ejs templates and also serve as APIs for database operations (experimented with MongoDB & mySQL on different assignments). I've got good scores all year but haven't properly understood middleware until now.
I can totally relate! Glad to see you’re taking the initiative to seek knowledge outside of the classroom-it really goes a long way!!
@@zachgoll I came across your channel tying to figure out session management for another university project. I have a Vue app hosted on Heroku (served by an Express instance) and it uses an Express API I wrote for db (MySQL) operations, which is CORS configured to accept HTTP requests from the Vue app and is hosted on a virtual machine on my university departmental server. Hopefully I'll slowly figure it out from your Passport authentication series. These videos are great, thanks for the time you've clearly put into creating them
In addition, I'd also keep an eye on my #fullstackroadmap series. I will be covering these topics over the next couple of weeks through building an E-Commerce app. Here's the playlist - ruclips.net/video/ZZJT5uskuvI/видео.html
@@zachgoll Thanks, I expect I'll check those out at some point in future. Just had a quick look at what's in the playlist and by the time you get to session management, it might be too late for my purposes. But I reckon i'll figure it out from your Node/Passport auth series
Great, you provided timeless knowledge!!!
this tutorial is sooo goood
detailed, easy to understand
and generous
Thank you so much, I was so confused until today that I switched to long polling for my chat app just cause I didn't really get the real flowcharts although my socket io application is working just fine.. this is the best tutorial on this topic and explains everything that is required, others use too many middlewares or middlewares along with templating engines and other cool technologies..
This is great! Thanks a bunch!
you got a talent for explaining, keep it up brodie
Best Video on Middleware. Thank you so much for this video
So much detailed explaining . Blessed to come across your tutorial. Great job. Please keep posting like this.
One of the best explanations out there. Thank you for doing this!
The explanations are very very good and to the point. Loved it
Very nice tutorial. A lot of things to learn and this video will definitely help you.
Lord zach gollwitzer, thank you very much for this clear explanation, ✌️✌️
Simply Superb Zach. Very clear explanation. Just Subscribed.
Thank you brother, this series is helping me so much...
Fantastic explanation! Now I have a much better understanding when it comes to what happens when I app.use() libraries like bodyParser, Helmet, Cors and so on...
Absolutely brilliant. You are a great teacher, very clear and easy to understand. Keep it up.
Loved this!!!
Underrated video for sure
Great video, thank you so much! Keep making these videos!
You’re so good at explaining! Please keep making videos. Thanks!
Very concise and to the point video !!! Great one ...
excellent!
subscribed!
great explanation. thanks a lot mate!
This is so great... Can you do a part 2 about testing those middlewares??
Like unit testing?
you are best ,,, you have explained all basic in one video thanks
That's a very nice tutorial. Thank you!
Really good. This is what I was looking for. many thanks Zach
Best best best tutorial on req res next cycle
excellent one of the best if not the best! Thank you Zach!
thank you, this makes me understand express a lot better..
Great explanation.Much needed.
Awesome explainition. Thank you
Great Video. I would be thrilled if you come up with a video of CRUD using MERN and clean architecture.
OMG I felt like I will never understand it, thank you so much
This is super clear and useful, thank you!
You're a great teacher
Great explaination! Thanks!😁🤝👍
Excellent explanation. Very helpful❤
Thank you for making this bro❣️❣️
this is actually soooo helpful frfr