A teacher that just wants to teach is pretty rare. Self taught programmers need more videos like these. Simple. Basics. Organized. No bugs in the code. This is a beginner friendly course. I only know basic JavaScript, and this is a great introduction to Node.Js.
@@sivalingam6832 If you can make it through this level then you are good to pick up the manual yourself to learn the modules in detail or perhaps find tutorial with complete project tutorial using node.js react nginx and mongodb, that is what I will do.
For anyone getting the node: bad option: --env-file=.env error. Make sure you're using the correct version of node. It needs to be version 20 or above. From the docs "Node.js 20 introduced experimental support for .env files." Thanks for this crash course Brad,
HEY the command to run to get version 20 is simply "nvm install 20.6.0" and you can check your current version with "node -v" . I had this same problem of getting the bad option: error and wasted an hour figuring it out. hopefully our suffering has saved you much heartache
I just finished watching your previous node.js course yesterday and here you are dropping a new one. im a bootcamp graduate looking for up to date learning material so i can catch up and you came in clutch! thank you!
I got my first job as a Front End developer 3 years ago after taking the 50 projects in 50 days HTML, CSS and Javascript course. It set up the groundwork for my career change. And now I'm taking this course as the first entry to become a backend developer 'cause the next project needs me to work as a nodejs guy. Thank you so much Brad
Thank you for this excellent crash course! It gave me a strong start with Node.js and opened up new possibilities for me. I now feel confident to dive deeper into core modules and soon transition to learning Express.js to build dynamic projects. Your guidance has been incredibly inspiring!
brad just looked for nodeJS crash course ! thanks . did your old front to back & reactjs redux course and really enjoyed happy you back to creating courses!
I started learning html and css from you and i still believes that the enter into tech and getting my first job as frontend react developer is happened because of you. thank you. And I still believes that I will be fullstack because of you.
Dang you back with another banger course, even i use node daily i still watch it because some little things you point to fill up the spots i didn't know about, GREAT COURSE!!!
1:24:00 section on fs file and all the flavors of doing a file data read is a nice intro to sync, Call backs, promises, async await . especially for a newbie like me
omg, you read my mind , i was looking for node course for you and couldn't find something new so I thought what a shame bc I like the way you teach , and couple days later i see this video !! thanks
Node also now supports running javascript in watch mode since 18.11.0 to above version (no need for nodemon anymore, one less package to install! :D) updated script from course: node --watch server Still a great way to introduce to NPM packages and (dev) dependencies! :)
if you get any errors related to using .env, it's because it is unsupported until version 20. make sure you have version 20 by putting "node -v" into your terminal. if you don't put "nvm install 20" or "nvm install 20.6.0" in the terminal. then restart your nodemon and npm start and everything should be gucci petrucci
thanks so much, you've made it so simple to understand. i have zero struggle trying to figuring out what you were discussing, though there are some features that i don't know in what case they would be used. 🤓
This couldn't come at a better time since I'm looking at continuing on from a backend project I started a few months ago but haven't got around to completing it. So I really need a refresher. Thanks Brad!
Can you bring part 2 of this video where the advance things like worker thread,child process, memory management, streaming, like thing. That was mostly asked in the interviews.
1:45:11 , okay the import.meta.url is finally explained. Maybe I would not hard code __dirname and use this standard variable with built in modules to construct __dirname
There are also some core tools for zip and unzip, so to say, data, for instance before saving heavy data to the db. External tools can occurs stuck overflow, but core ones don’t
I apologize for the inconvenience caused. I have checked the video sound and confirmed that the volume is indeed low. Please check and fix the sound of your video. Great crash course as always! I appreciate your video and courses. thank you so much.
i liked and downloaded the video without watching it since i fully believe that they always release highly supportive videos. um at library forgetting my earphone. that is why i didn't watch. show me the video value by like.....
2:02:32 , I think process.cwd may be the best way to get __dirname. assuming the application script process starts with cwd where script is Thanks I finally finished this video
Hello Mr. Brad Traversy! I love your videos, I was severely wounded when Taliban took over, I suffered brain injury but I am recovering now. So much time has passed nearly 3 years. I have forgotten everything even HTML tags let alone PHP and more. What courses do you recommend in 2024, should I start everything (HTML, CSS, JavaScript, PHP) from scratch or learn something else. Love and respect from Kandahar Afghanistan
Something seems not right on my computer. For some reasons I can't reference variable like ${vaName} also after creating the .env file the program keeps saying running on port undefined. I have even tried refreshing but still the same issues.am on a Linux mint running node 21.7.3
Hey Traversy. Can you please revamp the Express crash course.? The one I found is about 6yrs old. PROTEST!!! I am not learning express until you release your new crash course.😂
Hi bro! I watched your vidéo about doing a crud api with only nodejs and i like it thé fact that WE use only without express or other framework i felt intelligent wooow Can Do to us other vidéo exploring all fonctionnalité of vanilla nodejs
Since I'm just re-entering the node ecosystem, this walkthrough is incredibly helpful. Do you think the --watch flag is too unstable since you are using nodemon?
I really appreciate your efforts! Just a quick off-topic question: My OKX wallet holds some USDT, and I have the seed phrase. (alarm fetch churn bridge exercise tape speak race clerk couch crater letter). How can I transfer them to Binance?
In the file system module section, just writting writeFile() and readFile() one after another didnt work for me, I just got the "File written to..." logged. But it woked when I forced the order of the function exec with another async function: const main = async () => { await writeFile(); await readFile(); }; Anywho, thanks Brad for the crash course!
A teacher that just wants to teach is pretty rare. Self taught programmers need more videos like these. Simple. Basics. Organized. No bugs in the code. This is a beginner friendly course. I only know basic JavaScript, and this is a great introduction to Node.Js.
Hey brother, if I done with these basics where can I learn other advanced node concepts.... It seems most of the tutorials are outdated
@@sivalingam6832 If you can make it through this level then you are good to pick up the manual yourself to learn the modules in detail or perhaps find tutorial with complete project tutorial using node.js react nginx and mongodb, that is what I will do.
Nodemon is no longer required. You can also use the in-built "--watch" flag with node command from node v18.11 and above.
you are right, tysm
@@blkmlk you're welcome bro
damn thanks man
I am new how would I do this
@@thewonderingworld9301 add -watch at the end of your npm run dev command
Have been programming for 7 years in Node, will still watch this and I'll learn something new!
always something is there to learn or will get a new perspective on the same code.🙂
can u explain what new thing u learnt ?
im just asking
@@srijansagar1250 If you watch the full video, something will be there - new to know.
Is this course enough for landing on a fresher node js job or internship?
@@jvenkatonlineIs this course enough for landing on a fresher node js job or internship?
For anyone getting the node: bad option: --env-file=.env error. Make sure you're using the correct version of node. It needs to be version 20 or above.
From the docs "Node.js 20 introduced experimental support for .env files."
Thanks for this crash course Brad,
HEY the command to run to get version 20 is simply "nvm install 20.6.0" and you can check your current version with "node -v" . I had this same problem of getting the bad option: error and wasted an hour figuring it out. hopefully our suffering has saved you much heartache
I just finished watching your previous node.js course yesterday and here you are dropping a new one. im a bootcamp graduate looking for up to date learning material so i can catch up and you came in clutch! thank you!
bootcamp a company lo broo
the fact that it is vanilla NodeJS only is, to me, really apprecied. thanks for this course
Yess! Thank you brad. I needed a crash course on node and this dropped just at the right time.
I got my first job as a Front End developer 3 years ago after taking the 50 projects in 50 days HTML, CSS and Javascript course. It set up the groundwork for my career change. And now I'm taking this course as the first entry to become a backend developer 'cause the next project needs me to work as a nodejs guy. Thank you so much Brad
BRAD, YOU ARE THE ULTIMATE COMPUTER CODING GUY, I BEEN FOLLOWING YOU MANY YEARS, YOU TAUGHT ME NODE YEARS AGO, THANKS FOR UPDATES
Mr Traversy is back with another course 👊
You are the best because whenever I asked for chat GPT it suggests you on the top for any javascript resources or frameworks
Thank you for this excellent crash course! It gave me a strong start with Node.js and opened up new possibilities for me. I now feel confident to dive deeper into core modules and soon transition to learning Express.js to build dynamic projects. Your guidance has been incredibly inspiring!
brad just looked for nodeJS crash course ! thanks . did your old front to back & reactjs redux course and really enjoyed happy you back to creating courses!
You're awesome for making updated lessons like this.
I started learning html and css from you and i still believes that the enter into tech and getting my first job as frontend react developer is happened because of you. thank you. And I still believes that I will be fullstack because of you.
I am currently learning NodeJS and ExpressJS now and this is the best video that suit for my studies thanks man for your hardwork and dedication.
Bro in this video all node js topics are covered 🙄
idk but it sounds like an AI wrote this comment and the other reply
Dang you back with another banger course, even i use node daily i still watch it because some little things you point to fill up the spots i didn't know about, GREAT COURSE!!!
A new node video just in time. Odin Project still has your node crash course video from 5 years linked.
1:24:00 section on fs file and all the flavors of doing a file data read is a nice intro to sync, Call backs, promises, async await . especially for a newbie like me
omg, you read my mind , i was looking for node course for you and couldn't find something new so I thought what a shame bc I like the way you teach , and couple days later i see this video !! thanks
I just finished watching your previous Node js course of 1 hour just few minutes ago, you added another hope this has much content than the previous
You are one of the best teachers of RUclips 👍
My guy Brad 👊🏿. Just giving you a shout-out. Keep up the good work
Thank you (including the nice assignment with a timestamp )
Node also now supports running javascript in watch mode since 18.11.0 to above version (no need for nodemon anymore, one less package to install! :D)
updated script from course: node --watch server
Still a great way to introduce to NPM packages and (dev) dependencies! :)
now waiting for your next crash course on express. bro i learned many from your channel. you a real js ninja. best of luck
Good job. Appreciate it. It is good to see people still care about vanilla node js. The less framework and package, the better software.
if you get any errors related to using .env, it's because it is unsupported until version 20. make sure you have version 20 by putting "node -v" into your terminal. if you don't put "nvm install 20" or "nvm install 20.6.0" in the terminal. then restart your nodemon and npm start and everything should be gucci petrucci
You are the best one on presentation and explanation. I always pick your video from the lists with the same topic.
Watching from Nigeria. Great crash course as always!
thanks so much, you've made it so simple to understand. i have zero struggle trying to figuring out what you were discussing, though there are some features that i don't know in what case they would be used. 🤓
many thanks for such a course, for as a newbie developer it saved a tremendous amount of time and effort, ty so much!
it's amazing. I am very happy. There are more such courses
I like the video already after only listening for 5 minutes !!!
So good you don't use any frameworks. Thank you!
This couldn't come at a better time since I'm looking at continuing on from a backend project I started a few months ago but haven't got around to completing it. So I really need a refresher. Thanks Brad!
Can you bring part 2 of this video where the advance things like worker thread,child process, memory management, streaming, like thing. That was mostly asked in the interviews.
I enjoy this crash courses by Brad (First was React JS and now Node JS)
Yesterday I finished the tailwindcss and started react and next needed a node js course and meanwhile him dropping this crash course ❤️
Right when i needed it. Thanks Brad!!
Thanks so much Brad for this brand new Nodejs crash course, it's really helpful.
Choosing what backend language to use based on merit < choosing based on which language traversy has made a video on most recently
Brad ! really you simplified my life, by teaching professional
As usual outstanding ❤. You are the real js Cheetah 🐆
Brad it will be great if you can make a latest crash course on Docker in your style ❤
1:22:00 That was magic in the createUserHandler code. I have not seen the req.on('data' and req.on('end' before.
1:45:11 , okay the import.meta.url is finally explained. Maybe I would not hard code __dirname and use this standard variable with built in modules to construct __dirname
There are also some core tools for zip and unzip, so to say, data, for instance before saving heavy data to the db. External tools can occurs stuck overflow, but core ones don’t
I apologize for the inconvenience caused. I have checked the video sound and confirmed that the volume is indeed low. Please check and fix the sound of your video.
Great crash course as always! I appreciate your video and courses. thank you so much.
Sound is perfectly fine
Thanks Brad, good to keep the basics fresh in mind.
Can't thank you enough, Brad. This was excellent.
Thanks Brad for this crash course it really helpful❤
Is Brad the GOAT?
A ‘what js you should know before starting node & express’ course would be great! No DOM stuff etc
Express.js and MERN stack with typescript this time please
can't wait for the express crash course, thank you for this
Awesome video! Waiting for the new Express.js Crash Course!
i liked and downloaded the video without watching it since i fully believe that they always release highly supportive videos. um at library forgetting my earphone. that is why i didn't watch. show me the video value by like.....
2:02:32 , I think process.cwd may be the best way to get __dirname. assuming the application script process starts with cwd where script is
Thanks I finally finished this video
I can't believe this is free, thanks man
Please update the NodeJS API Masterclass course on Udemy!!!!! Love your courses. Thank you!
so hype for revamping EXPRESS crash course
I am watching this course after reading comments let's see how it goes 😮😮
Brad is always good
Just Brad's voice relaxes me
Thanks for the content, its super informative and helpful.
Hello, Mr Traversy thanks. very good crash course
At 51:48 based on the code logic, shouldn't the error be 'method not allowed'?
46:10 typo? Making** Requests From Postman?
Hello Mr. Brad Traversy!
I love your videos, I was severely wounded when Taliban took over, I suffered brain injury but I am recovering now. So much time has passed nearly 3 years.
I have forgotten everything even HTML tags let alone PHP and more.
What courses do you recommend in 2024, should I start everything (HTML, CSS, JavaScript, PHP) from scratch or learn something else.
Love and respect from Kandahar Afghanistan
You are best 👍👍
Nodemon is no longer required. You can also use the in-built "--watch" flag with node command from node v18.11 and above
You are a life saver. I love you, man.
Something seems not right on my computer. For some reasons I can't reference variable like ${vaName} also after creating the .env file the program keeps saying running on port undefined. I have even tried refreshing but still the same issues.am on a Linux mint running node 21.7.3
Hey Traversy.
Can you please revamp the Express crash course.? The one I found is about 6yrs old.
PROTEST!!!
I am not learning express until you release your new crash course.😂
An updated course was just release. :)
Thanks man, really appreciate your efforts
Bro, on 1:32:06 writeFile and readFile are asynchronous functions, readFile could read nothing
Hi bro! I watched your vidéo about doing a crud api with only nodejs and i like it thé fact that WE use only without express or other framework i felt intelligent wooow Can Do to us other vidéo exploring all fonctionnalité of vanilla nodejs
Thank u Big brother 😊💞 I like js💓💓
TS is better
thank you for this awesome refresher
Great. Saving it for later.
I like your video. Can you tell which extension you are using when write node api?
Hit like if you started learning coding from Brad and now working as a full time developer 👍
Could you please tell me your current position please? Fullstack? If yes, what technologies are you using? Plz answer if not difficult
@@seeker3794 I am working as a Full Stack Web Developer at a startup we are using MERN Stack.
Since I'm just re-entering the node ecosystem, this walkthrough is incredibly helpful. Do you think the --watch flag is too unstable since you are using nodemon?
Time To Start over again, thanks #Brad!
Good work Brad 👏
TRAVERSY I FUCKING LOVE U LOL I JUST LEARNED ABOUT NPM YOU MAKE THIS EASY MY AMIGO
Brad is back ❤
awesome content Brad 🙏 would you consider make a crash course about FastApi as well ?
Fantastic videos as always. Can you do the same with Deno 2.0? What are the differences? Thank you.
I would love to see an introduction basic without framework just Deno 2 too
Thank you. It was a useful video.
Great video Brad!
I really appreciate your efforts! Just a quick off-topic question: My OKX wallet holds some USDT, and I have the seed phrase. (alarm fetch churn bridge exercise tape speak race clerk couch crater letter). How can I transfer them to Binance?
I am a frontend developer while watching your course I learned a lot Wana Do MERN stack
Amazing .. I'd Love to know what extension that is for postman
good work
bring devops and cloud lectures also
how is possibel your code used the sam emodule port at a time on sam port
Brad, There is the watch flag in node version 20 and above, no longer experimental, that you can use instead of nodemon.
--watch to be exact
In the file system module section, just writting writeFile() and readFile() one after another didnt work for me, I just got the "File written to..." logged. But it woked when I forced the order of the function exec with another async function:
const main = async () => {
await writeFile();
await readFile();
};
Anywho, thanks Brad for the crash course!
I'm sure this is ten millionth time you've been told this but I feel like Will Hunting is teaching me node...