When a new Net Ninja video goes up: 1. open video 2. smash the like button 3. start watching :) By far my favorite youtube channel for learning new things
Net Ninja's style of teaching is absolutely the best. He applies the Feynman Technique in all his videos enabling someone to grasp even the most complex concepts without having to bang your head.
For anyone out there having problems with the styles not loading for the "/about/create" path, make sure you link your css to the html file as "/styles.css" and not "styles.css", otherwise it doesn't work. When you automatically create a link tag with VSCode by typing "link:css", VSCode doesn't add the slash at the beginning, so you might miss that.
@@ahmedlabeeb2969 It depends on the project. I don't know what you want to build. Depending on the ideas you have, your project might need many third party packages, or none. Nodemon is good to have because it keeps track of the changes you make to your code and automatically restarts the server, that way you don't have to be constantly shutting down and turning on the server every time you change a line of code. Does a project need it to work? No, but it sure is helpful. EJS is a view engine that allows you to do server-side rendering. Basically you build your html on the server and then send it to the client's browser. It also gives you many features to build your pages. You can check its documentation to learn more. Again, the only one who knows what packages your project needs, it's you :).
YOU ARE EPIC!! You have literally taught all the topics that aren't explained in depth anywhere in youtube . I have followed this series from video 1 and each were equally informative and well explained. :D
He has explained beautifully why this thing has arrived, why we will be using it, What we can do next to encounter this code?? Great thanks to him making such informative video. @NetNinja
I wanted to watch the series at the end but I have run out of patience , am gonna refresh myself with this. Your videos are absolutely gold especially for beginners and intermediate developers.
@@ahmedlabeeb2969 If You Have Installed these packages globally like --g then you don't have to install them again and again But if you don't have done them globally you have to setup your npm and Install them in the Project Although it is your wish what you wanna do
thank you so much for adding diagrams when explaining concepts! it really brings everything into perspective and I haven't seen anyone use them for explanation purposes so BIG UPS TO YOU!!!
Shaun, you're one of the best teachers I've come across. Words aren't just enough to express how grateful I am for coming across your channel. You're an amazing teacher and you'll definitely go very far.
I've watched a lot of tutorials demostarating how to use nodejs and express to create website, but only you explained every theory behind so detailed. Thumb up! Thank you so much!
Dude, in one of the PHP videos, you were using code that was outdated. Please check the documentation before writing some new code for your videos. Anyway, you are an AWESOME teacher, and you are the only person on UA-cam that I have found that is so helpful and organized for coding.
Thank you for your video. I started learning programming node.js last and your video was the missing link to understand the difference of middlwares and callback functions ... etc . indeed i very excited to follow all your lessons . thanks again
I dont comment often, but i want to let you know you help me a lot! Thanks Man, you are my preferred Web development Teacher, crystal clear explanation! Respect!
Pretty often, for a French guy like me, we can be pretty afraid of programming jargon. When we speak about some terms like "Middleware", we think about something very technical, until someone explain that it's a simple/useful concept to apply. In any case, thank you for all the stuff you vulgarize. About view engine and static file (for CSS), I was already looking for clues/solutions by myself, so I didn't really need this new information. Even if I was pretty rough in my last comment, it was because I preferred something cleaner (Liquid) for my view engine than what you proposed.
@@ahmedlabeeb2969Yes but if you don't want than you can install packages globally so that all the node. js application on your computer can import and use the installed packages
This is what I call middleware made easy. Thanks theNetNinja,. I'm curious, what are you planning for the long awaited new course plus updates on vuejs course 🤦🏽♂️🤦🏽♂️🤦🏽♂️
I like your tutorial and give thumbs up on every one. But I just want to give feedback on one thing that I think about. Every time you paste code and say it is so we don't have to be bored watching you type it out I think to my self, "well i would actually like to watch you type it out". So far I can just pause the video and type it out, but there is value in typing ALL code with you and hear the discussion about it.
Hi Net Ninja!!!! You are awesome bro. I have learned more from your free youtube tutorial more than other peoples' paid premium courses. Thanks!!!! I have are quest. Can you please make small project tutorials on user sign up, submit query forms and etc? Please. Thanks again!!!!
I got a job as a react developer and your course helped me the most. Now i am promoted to full stack and your node course is again helping me. So glad to have a instructor like you. And you coding style is so neat. Just love it.
@@NetNinja in some countries this isn't available. i was interested in merch for a long time, but the option you are describing isn't available in poland. could you please put a link in the description for that?
Really appreciate , but I've a question [app.use(express.static('public'));] doesn't work with the long url (/blogs/create) i changed it to (/create) and it worked Can any one help plz..! and THANKS
Hi I am currently stuck in my project. I want to server static css, img, js files to the client on the browser, I followed your steps exactly but keep on getting this error: mime type is not executable
Excellent tutorials no doubt. Thanks NINJA. I have a question. To let express know about my static files I used the 'public' folder [ app.use(express.static('/public'))] but this did not work until I changed to [app.use(express.static(__dirname + "/public"));] . Is there a difference? I thought it's the same thing!
Hey, the path is relative to your app.js file where you launch your node process. So if your public directory is in a different location to your app.js file, then you will need to build the absolute path using __dirname. Otherwise, you can just use use 'public' (no need to use '/' before it either). Hope this helps.
great tutorial, I am learning a lot from it! everything was going good until now I got a problem installing morgan, a nertwork problem, any solution for that? do I need morgan to keep it going?
@@TheJojoboy12 Thank you for your suggestion, I ended up finding out that it is a 'cache' problem and I need to clear cache and restart VScode to be able to install anything again, it happens every so often
The res[content-length] argument of morgan is supposed to be the length in bytes of the file's body. Why does it shows --- in the screen of the tutorial?
When a new Net Ninja video goes up:
1. open video
2. smash the like button
3. start watching :)
By far my favorite youtube channel for learning new things
0.1 - disable adblock
Except for the "view engine" video, it's what I automatically do for each video, because I already trust his contents.
Net Ninja's style of teaching is absolutely the best. He applies the Feynman Technique in all his videos enabling someone to grasp even the most complex concepts without having to bang your head.
For anyone out there having problems with the styles not loading for the "/about/create" path, make sure you link your css to the html file as "/styles.css" and not "styles.css", otherwise it doesn't work. When you automatically create a link tag with VSCode by typing "link:css", VSCode doesn't add the slash at the beginning, so you might miss that.
thanks.
Thank you, I've been scratching my head for the past half an hour
Hi! Do I need to install Nodemon, Ejs, and other third party packages every time I start a project?
@@ahmedlabeeb2969 It depends on the project. I don't know what you want to build. Depending on the ideas you have, your project might need many third party packages, or none.
Nodemon is good to have because it keeps track of the changes you make to your code and automatically restarts the server, that way you don't have to be constantly shutting down and turning on the server every time you change a line of code. Does a project need it to work? No, but it sure is helpful.
EJS is a view engine that allows you to do server-side rendering. Basically you build your html on the server and then send it to the client's browser. It also gives you many features to build your pages. You can check its documentation to learn more.
Again, the only one who knows what packages your project needs, it's you :).
@@leonelgauna1174 Thanks!
YOU ARE EPIC!! You have literally taught all the topics that aren't explained in depth anywhere in youtube . I have followed this series from video 1 and each were equally informative and well explained. :D
I know Im quite off topic but do anybody know of a good website to watch newly released series online ?
@Cayson Emilio Thank you, I signed up and it seems to work =) Appreciate it !!
@Shane Orion Happy to help :D
forget youtube even some of the best universities wouldn't teach you this good. Thank you from the bottom of my heart man you teach really good.
He has explained beautifully why this thing has arrived, why we will be using it, What we can do next to encounter this code?? Great thanks to him making such informative video. @NetNinja
Let's address THAT issue "NEXT" and then moved onto explaining .next() function 👏😂 im starting to like this guy 😂💯
I wanted to watch the series at the end but I have run out of patience , am gonna refresh myself with this. Your videos are absolutely gold especially for beginners and intermediate developers.
Should all be up in about 3 days anyway :). Enjoy!
@@NetNinja Hi! Great Video. Do I need to install Nodemon, Ejs, and other third party packages every time I start a project?
@@ahmedlabeeb2969 If You Have Installed these packages globally like --g then you don't have to install them again and again
But if you don't have done them globally you have to setup your npm and Install them in the Project
Although it is your wish what you wanna do
@@vinayak5788 Thanks
This is the best node tutorial on youtube.
Thanks for watching Cagnus!
thank you so much for adding diagrams when explaining concepts! it really brings everything into perspective and I haven't seen anyone use them for explanation purposes so BIG UPS TO YOU!!!
Shaun, you're one of the best teachers I've come across.
Words aren't just enough to express how grateful I am for coming across your channel.
You're an amazing teacher and you'll definitely go very far.
Honestly understood the middle ware concept clearly than before thank u Shaun!!
The Net Ninja > Very very quality content , Very very good teaching methods.
I've watched a lot of tutorials demostarating how to use nodejs and express to create website, but only you explained every theory behind so detailed. Thumb up! Thank you so much!
This channel is one of the best free learning resources you could find on the internet!
Серед усіх відео англомовний курс виявився для мене найбільш зрозумілим та цікавим. Thanks a lot!
This was something I wanted to learn ever since I started web development. Thank you, Net Ninja for helping me black belt in it.
Anyone else absolutely loving the way he says R?
Aha, thank you :) loving your username!
The way you explained next() function was just awesome keep up the good work
Dude, in one of the PHP videos, you were using code that was outdated. Please check the documentation before writing some new code for your videos. Anyway, you are an AWESOME teacher, and you are the only person on UA-cam that I have found that is so helpful and organized for coding.
Your teaching method is great and every lesson is interesting from the beginning till the end. Thank you. Good luck!
Thank you! 😃
Best Teacher ever no one can explain it more better thats why i am watching it in 2024
That means a lot :) thanks for watching!
Now i can say "What middle ware is".. You r an amazing teacher Shaun!
Thank you for your video. I started learning programming node.js last and your video was the missing link to understand the difference of middlwares and callback functions ... etc . indeed i very excited to follow all your lessons . thanks again
You're the one I'd give a thumb up without watching the video. I know for sure it will be amazing content. Thank you, you're great 👏
Only up to lesson 8. This course has really been explained well. TY Net Ninja.
we just need another video about how to deploy the website. and thank you so much you are a great guy
Your explanation of middleware is the best I have come across mate !!
I am blown away with your skill to simplify things. Thanks for your lessons and I look forward to one day paying for premium content. 👌🏼
I dont comment often, but i want to let you know you help me a lot! Thanks Man, you are my preferred Web development Teacher, crystal clear explanation! Respect!
U R awesome, thank you, Im learning more from here that from my school, thank you thank you thank you!!!
You are so welcome! :) thanks for watching
i try to understand middleware by taking many videos but it not works. but now i understand after watching your video lec. thanks you are super
best node.js tutorial ever
Pretty often, for a French guy like me, we can be pretty afraid of programming jargon.
When we speak about some terms like "Middleware", we think about something very technical, until someone explain that it's a simple/useful concept to apply.
In any case, thank you for all the stuff you vulgarize.
About view engine and static file (for CSS), I was already looking for clues/solutions by myself, so I didn't really need this new information.
Even if I was pretty rough in my last comment, it was because I preferred something cleaner (Liquid) for my view engine than what you proposed.
Petition for youtube to add a double like button. This is so good I almost cried.
The best teacher ever, nice and clear explanation.
Thank you! 😃
Thanks Shaun for the wonderful tutorial series
Not just the Ninja's blade must be sharp, the technology which he uses also must be cutting edge!
that "alright then gang" ? is pretty damn stylish as much as your explanation, thank u so much
This was a very well done tutorial. Thanks!
Hi! Do I need to install Nodemon, Ejs, and other third party packages every time I start a project?
Thanks NetNinja Best Crash Course for NodeJS.
I am from Bangladesh . Your video is very helpful to me.
I didnt know u guys have internet
@@Ath9394
it's your ignorance
You explained the concept very well and its simple to understand thank you very much
Brilliant, just brilliant. So well thought out.
Net Ninja is on Fire 🔥 Thnx man
Hi! Do I need to install Nodemon, Ejs, and other third party packages every time I start a project?
@@ahmedlabeeb2969Yes but if you don't want than you can install packages globally so that all the node. js application on your computer can import and use the installed packages
@@pratikxavier8176 Thanks man!
This is phenomenal content, man. Keep up the good work!
Very well explained, like : dislike ratio tells your everything about this video
Great one Thanks. One question please. is the Static middle ware needs to be on top before the Routes? Cheers
Amazing tutorials mate! Big THUMBS UP!
Watched all the ads, thanks for the awesome videos!
Brilliant as always Shawn...
You are the best man, keep going.!
Can you do F# after this series
pls
your channel is the best coding channel on yt
Net Ninja my man😍🔥 love your videos 💯
thank u bro, you have talent of explaining simply
You're most welcome :) thanks for the kind words!
This is what I call middleware made easy.
Thanks theNetNinja,.
I'm curious, what are you planning for the long awaited new course plus updates on vuejs course 🤦🏽♂️🤦🏽♂️🤦🏽♂️
Hi! Do I need to install Nodemon, Ejs, and other third party packages every time I start a project?
Ahmed Labeeb, nodemon can be installed once globally but other packages needs to be installed per project
Happy coding :)
@@raymondmichael4987 Thanks man!
Great Lesson, liked it.
Thanks for all your lectures😇😇😇
love your channel man!!
Bro you are so good in teaching
Thank you so much 😀
I like your tutorial and give thumbs up on every one. But I just want to give feedback on one thing that I think about. Every time you paste code and say it is so we don't have to be bored watching you type it out I think to my self, "well i would actually like to watch you type it out".
So far I can just pause the video and type it out, but there is value in typing ALL code with you and hear the discussion about it.
You are just amazing. Thank you. Well explained
Thanks Nicolas!
Very very appreciated, thanks.
Hi Net Ninja!!!! You are awesome bro. I have learned more from your free youtube tutorial more than other peoples' paid premium courses. Thanks!!!!
I have are quest. Can you please make small project tutorials on user sign up, submit query forms and etc? Please.
Thanks again!!!!
Best instructor
I got a job as a react developer and your course helped me the most. Now i am promoted to full stack and your node course is again helping me. So glad to have a instructor like you. And you coding style is so neat. Just love it.
After watching many tutorials on node i didn't understand, but now i have understood every single concept here , thx for series.
Awesome! :) thanks for watching
Awesome video, mate!
Hi! I was just curious if you sell any net ninja merch? I would love to get a t-shirt or a sticker. :)
Hey, yeah - there should be some merch displayed beneath my videos!
@@NetNinja in some countries this isn't available. i was interested in merch for a long time, but the option you are describing isn't available in poland. could you please put a link in the description for that?
Thank you, solid as always
Thanks Leon!
Great explanation.
Great crash course :)
hello ninja teacher! you helped me alot !!
thanks
im looking forward to auth :)
Really appreciate , but I've a question
[app.use(express.static('public'));] doesn't work with the long url (/blogs/create) i changed it to (/create) and it worked
Can any one help plz..!
and THANKS
can u share some videos about nodejs with mongodb
and a lot of thanks for ur hard work ♥
why didn't you use next() command in express.static() middleware?
Hi Shaun, Why we didn't use next() function in the 404 route where we also used app.use? Doesn't express hang there? Can you please clarify? Thanks
Hi I am currently stuck in my project. I want to server static css, img, js files to the client on the browser, I followed your steps exactly but keep on getting this error:
mime type is not executable
Well Explained
Salamat..,
good stuff mate
Best tutorial.....
amazing my friend
the best
Excellent tutorials no doubt. Thanks NINJA. I have a question. To let express know about my static files I used the 'public' folder [ app.use(express.static('/public'))] but this did not work until I changed to [app.use(express.static(__dirname + "/public"));] . Is there a difference? I thought it's the same thing!
Hey, the path is relative to your app.js file where you launch your node process. So if your public directory is in a different location to your app.js file, then you will need to build the absolute path using __dirname. Otherwise, you can just use use 'public' (no need to use '/' before it either). Hope this helps.
...tnx 🙏🏾
@@NetNinja I spent a lot of time in this, thanks for answering those question
Hi Shawn,
Can we do the same thing (calling next() ) in non-express server ? Like the ones of the first videos
Awesome
great tutorial, I am learning a lot from it! everything was going good until now I got a problem installing morgan, a nertwork problem, any solution for that? do I need morgan to keep it going?
Try npm install morgan --force
@@TheJojoboy12 Thank you for your suggestion, I ended up finding out that it is a 'cache' problem and I need to clear cache and restart VScode to be able to install anything again, it happens every so often
superbe!!! really amazing!
Isn't using React states + React router basically doing the same thing as node/express, if i'm not designing a website that needs to store data ?
The res[content-length] argument of morgan is supposed to be the length in bytes of the file's body. Why does it shows --- in the screen of the tutorial?
yeah very very nice tutorial
my 🐐
Thanks a lot
ty.
How did they use to do when express didn't exist and they wanted to include static files ?
Hey can anyone tell how to access glyphicons by this static in express js, I cant access them.
@thenetninja
Can you re-upload reactjs. Since the earlier is too old. It's completely changed now.
How can i download Course file? because there isn't code in github.
Thanku so much 😋
@5:37 i see what you did there hahahaha !