@@LindaLinda-ls2fd after version 4.16.0 bodyParser is deprecated and you can use express.json() instead of bodyParser.json() now... this is the official statement "The express.json() and express.urlencoded() middleware have been added to provide request body parsing support out-of-the-box. This uses the expressjs/body-parser module underneath, so apps that are currently requiring the module separately can switch to the built-in parsers."
@@bhaveshchaudhari693 Thank you so much for replying (I really appreciate it) - I am not tech savvy so I will just use the version he is using so I don't run into any more issues.
Hello Adrian, Nice to meet you. Thanks for making an amazing youtube series. I am completely stuck on something in one of your videos. router.get("/", (req, res) => { console.log(users); //In the video you get this output in the browser, I get it in the vs code. res.send("Hello"); //I get this in the browser. }); No idea why. Your input would be very much appreciated. Thanks. th-cam.com/video/l8WPWK9mS5M/w-d-xo.html
@@DmitriyMalayevProfile i know same dude wtf...like browser just doesnt read the JSON no matter what. and in console when you type JSON is says {Symbol(Symbol.toStringtag): 'JSON', parse: f,stringify: f} someting like that, which a google search takes you nowhere....
I want to take a minute & appreciate the quality knowledge he has delivered to the world. I have seen many videos on Rest APIs with NodeJS, But this is just outstanding. The English pronunciation was so clear that any non-native person can understand it. The flow of the video was in such a way that, I was understanding what is happening throughout the video. And one more thing - I started this video at 12 AM & It's 1:15 AM now. I didn't know how the time went by. What a great mentor. Looking forward to seeing such great content for all my javascript needs. Subscribed.😀
You cannot imagine how happy your video made me! i've struggled so much with understanding other instructors that I almost lost hope that I could ever learn JavaScript. I even took an 8 hours freeCodeCamp course and it almost made me give up entirely on programming. Thank you so much!
That's an actual tutorial. I watched like 10 others that were so abstract I felt like wasting my time. This one actually explained and show us stuff in a concrete way. Thanks a lot
Ouuuuuu i loved it. Sunday. 11AM morning. Nothing to do. I said: "Lets give a try to this video". Totally worth it. I loved every step in this tutorial and has helped me a lot about what an API is. I now its totally amateur and probably has a lot of security problems. This post-get-delete-patch back end mini-app was GREAT!! I would love to add a database and query! Right now, you have won a new subscriber and i will check your videos. Love
Your content is really clear and on point without needless talk or explanations. I had learnt tons from your react project building Corona -tracker.This express API is video was also something I was looking for. I would really appreciate if you make another video on interacting with MongoDB database. Thanks.
After watching so many tutorials on building APIs, I have to say that this is the best video. Simple app, no unnecessary packages and to the point explanation of each and every line of code. Going to share this video and recommend it to my friends!!! Thank you for making this!
Man you are great. I knew Javascript but had not worked with Express and Node. You just made me add something on my CV. You are great teacher. Looking forward for your MongoDB tutorial.
Man.this all I need to know to working on.my assessment Full stack Web app... in 12 weeks course never seen this way to building up CRUD app ..Thanks for your video
I just graduated from as a web developer and I am going to go through a lot more of your videos now that I've found you. This is Gold the way you teach, Subbed
Has been, I think, 2 or 3 weeks ago that I started to learn node.js and express and I could followed along with your tutorial. Well explained, and one thing I noticed in the beginning it's that you typed the parameter or something you would do but secs later you delete it explaining why. It's a awesome thing to do 'cause I watched and did at the same time and that really got into my thinking process. Thanks for sharing this class with all of us !! Peace !
Just finished coding along with this video. I need say that this is fantastic. The way you explained is definitely clear, into details and easy to understand for beginners ! Thank you so much Sir !
I would like to take the moment of appreciating the knowledge you shared in this tutorial 🙏! What a blessing it has been for me and thank you very much!
Oh, This is best video that is well explained for the GET, POST, DELETE, PATCH in node.js with express. It was easy to code along with you successfully . Thank you for the nice video. Great appreciation for the effort.
By far the best tutorial I have or ever will see relating to API's. Clear, concise, to the point, not loaded with anything unnecessary, and explains everything. I understand APIs that much more because of this video. Thank you for your contribution to us learning web development my guy THIS IS THE CORRECT TUTORIAL TO WATCH
Honestly I have to say this sad story, I have been watching tutorial for many years and this is the first time I understand this topic well specially Controllers. I have been trapped in the tutorial hells for years but now I am taking it very serious and this video helped a lot... Thank you!
Today I discovered this channel and surprisingly I watched your 3 videos on guided projects. I learned a lot from these videos. Now I am confident with React, Node, Rest API. Thanks a lot for providing such amazing content🤘💯
This was the best video I have watched that really helped me understand Express and JavaScript in general. I learned more in this tutorial than I could have ever imagined.
I just wanted to say thank you so much for creating and sharing this video tutorial on REST API. Your video was incredibly helpful and saved me a lot of time. I really appreciated how easy it was to understand, and the quality of the video was excellent. I now feel much more confident in my ability to work with REST API. Your contribution to the community is greatly appreciated, and I'm sure many others have benefited from your expertise. Thanks again, and keep up the fantastic work!
I like the way you explain buddy! I learned a lot through following your tutorials such as youtube-clone, covid-tracker projects. Keep it up, looking forward to more interesting projects
amazing!!,... this is the best tutorial have ever seen, clearly to understand and to take to practice! I really appreciate it.!.. I'm beginning with node , this helps me a lot.. I'm looking forward to finding more like this one!!
Yes, Yes. Node.js Express with Mongo db as Database. Please------By the Way You are the Best So far I have seen. Like If you are pro, then it is very difficult to come down to beginner level and explain. But you nailed it Bro. Superb 👌👌
Hello @Javascript Mastery...I was looking for REST API and I found your channel. The way you have explained the content kept me going on. I completed the entire video with enough understanding and it made my day giving me the required momentum to complete the assignments. Thank you for your time and efforts of putting forth the content in simple and concise manner. Looking forward for more videos including MongoDB.You rock 👍
JavaScript Mastery PRO launching soon! Be the first one to find out about it - javascriptmastery.eo.page 🔥
Please help. Why is bodyParser automatically struck out when I type it in in Line 7 and the message says "bodyparser is deprecated."?????
@@LindaLinda-ls2fd
after version 4.16.0 bodyParser is deprecated and you can use express.json() instead of bodyParser.json() now... this is the official statement
"The express.json() and express.urlencoded() middleware have been added to provide request body parsing support out-of-the-box. This uses the expressjs/body-parser module underneath, so apps that are currently requiring the module separately can switch to the built-in parsers."
@@bhaveshchaudhari693 Thank you so much for replying (I really appreciate it) - I am not tech savvy so I will just use the version he is using so I don't run into any more issues.
Hello Adrian,
Nice to meet you. Thanks for making an amazing youtube series.
I am completely stuck on something in one of your videos.
router.get("/", (req, res) => {
console.log(users); //In the video you get this output in the browser, I get it in the vs code.
res.send("Hello"); //I get this in the browser.
});
No idea why. Your input would be very much appreciated. Thanks.
th-cam.com/video/l8WPWK9mS5M/w-d-xo.html
@@DmitriyMalayevProfile i know same dude wtf...like browser just doesnt read the JSON no matter what. and in console when you type JSON is says {Symbol(Symbol.toStringtag): 'JSON', parse: f,stringify: f} someting like that, which a google search takes you nowhere....
Just here to vote for the MongoDB tutorial. I hope my comment helps the algorithm. Great video.
Thanks, coming soon!
Would be really great!
If thr mongo db tutorial is done , can u please share the link here ..🙏
@@javascriptmastery Waiting for MongoDB as a continuation part of this tutorial :)
I want to take a minute & appreciate the quality knowledge he has delivered to the world. I have seen many videos on Rest APIs with NodeJS, But this is just outstanding. The English pronunciation was so clear that any non-native person can understand it. The flow of the video was in such a way that, I was understanding what is happening throughout the video. And one more thing - I started this video at 12 AM & It's 1:15 AM now. I didn't know how the time went by. What a great mentor. Looking forward to seeing such great content for all my javascript needs. Subscribed.😀
jara sun na tune users array ko console.log kiya tera array object dikhaya kya chrome bcz it needs res.send( ) to work it dosent shows on my browser
hats-off to this man's patience level, explaining each and everything with clear English pronunciation. Thank you so much
You cannot imagine how happy your video made me! i've struggled so much with understanding other instructors that I almost lost hope that I could ever learn JavaScript. I even took an 8 hours freeCodeCamp course and it almost made me give up entirely on programming. Thank you so much!
as a front end react dev . is this video good for a beginner in backend ?
That's an actual tutorial. I watched like 10 others that were so abstract I felt like wasting my time. This one actually explained and show us stuff in a concrete way. Thanks a lot
Ouuuuuu i loved it.
Sunday. 11AM morning. Nothing to do.
I said: "Lets give a try to this video".
Totally worth it. I loved every step in this tutorial and has helped me a lot about what an API is.
I now its totally amateur and probably has a lot of security problems.
This post-get-delete-patch back end mini-app was GREAT!! I would love to add a database and query!
Right now, you have won a new subscriber and i will check your videos.
Love
That's amazing! I'm glad you liked it! 😊
I am a first-time visitor of your video.
as soon I spend 10 min, I realized this could be the best source... Subscribed and liked
Your content is really clear and on point without needless talk or explanations. I had learnt tons from your react project building Corona -tracker.This express API is video was also something I was looking for. I would really appreciate if you make another video on interacting with MongoDB database. Thanks.
If you found it then let me know please!
What a tutorial, even after 4 years of being published, i find it now, and only tutorial i can understand
Best stuff found about RESTAPI's ever!!! Your work is commendable!!.....
Hello Dhruv! Are you a 2021-passout? Would you be interested in exploring job opportunities in web development?
Dude how is it that im understanding every single thing you are spitting. Thank for being a master instructor!
After watching so many tutorials on building APIs, I have to say that this is the best video. Simple app, no unnecessary packages and to the point explanation of each and every line of code. Going to share this video and recommend it to my friends!!!
Thank you for making this!
This is the best node express crud api tutorial without a doubt !!!
Thank you, appreciate it!
Went through about 50 vids before this perfectly explained masterpiece came along. Thank you.
Glad it helped!
The perfect introduction to REST with Node and Express.
Man you are great. I knew Javascript but had not worked with Express and Node. You just made me add something on my CV. You are great teacher. Looking forward for your MongoDB tutorial.
This is arguably the best video of nodejs on TH-cam.. Hat off to you man 🙌🙌
Very clean, perfect for complete beginners. Thank you for the effort you put into this. Zero to hero :)
Glad you enjoyed it!
You just earned an extra subscriber with this video
I guess your tutorial is the first one i'm seeing the import statements being used instead of require statements. Most up to date tutorial. Thanks 👍
რაო?
This channel definitely deserve more ....
Man.this all I need to know to working on.my assessment Full stack Web app... in 12 weeks course never seen this way to building up CRUD app ..Thanks for your video
I just graduated from as a web developer and I am going to go through a lot more of your videos now that I've found you. This is Gold the way you teach, Subbed
University?
It would be really nice if you could extend this content with MongoDB, great stuff
That's the plan!
@@javascriptmastery yes please. I know every day somebody is starting but we need some advance stuff too. Thank you
@@javascriptmastery thanks for this awesome tutorial sir! as always
@@javascriptmastery so you created with mongodb or not???
@@javascriptmastery Still the plan ? Wonderful vidéo though !
Has been, I think, 2 or 3 weeks ago that I started to learn node.js and express and I could followed along with your tutorial. Well explained, and one thing I noticed in the beginning it's that you typed the parameter or something you would do but secs later you delete it explaining why. It's a awesome thing to do 'cause I watched and did at the same time and that really got into my thinking process. Thanks for sharing this class with all of us !! Peace !
An Absolutely No Nonsense Beginner's Guide to Getting Started with APIs. Loved coding along ❤
Wow! Spent the entire day following this wonderful tutorial. Im really impressed. Thank you for this!
Just finished coding along with this video. I need say that this is fantastic. The way you explained is definitely clear, into details and easy to understand for beginners ! Thank you so much Sir !
Mate ........you are a legend.Keep sharing your experience and knowledge
Thank you for this delightful tutorial, rock on!
your explanation is incredible, and also your accent and pronunciation are on point! thank you so much
I've done many of these tutorials, and I have to say, this is by far the best one I've taken.
I would like to take the moment of appreciating the knowledge you shared in this tutorial 🙏!
What a blessing it has been for me and thank you very much!
Master yours explanations and sense of teaching is like drink water.... thank you
never watched that much smooth explanations. not everyone shows practical explain like you do. thanks a lot.
Thanks! 😊
Hello Harsh! Are you a 2021-passout and open to job opportunities in web development ?
The best tutorial by far on REST API. Keep it up!
After searching almost all the videos in youtube regarding API automation with Node.js. ...this is the best compact video suited for me.
❤️
Thanks 🙏👍
Thank you!😊
Amazing tutorial, I followed this video from scratch to end, and I've understood what the api is clearly with your helo, thanks so much
Oh, This is best video that is well explained for the GET, POST, DELETE, PATCH in node.js with express. It was easy to code along with you successfully . Thank you for the nice video. Great appreciation for the effort.
The most comprehensive video on nodejs API. Thank you so much for putting in the effort to see people like us groundbreaking in these spaces.
Thanks man
I've been searching for sth that I can understand rest api
U changed my life
Bro what a amazing video ❤
So professional and clean tutorial with proper folder structuring and easy to understand.
Much love from Pakistan
By far the best tutorial I have or ever will see relating to API's. Clear, concise, to the point, not loaded with anything unnecessary, and explains everything. I understand APIs that much more because of this video. Thank you for your contribution to us learning web development my guy THIS IS THE CORRECT TUTORIAL TO WATCH
Honestly I have to say this sad story, I have been watching tutorial for many years and this is the first time I understand this topic well specially Controllers. I have been trapped in the tutorial hells for years but now I am taking it very serious and this video helped a lot... Thank you!
I'm glad you finally understand it :)
The Best tutorial that i found on the Internet!
Today I discovered this channel and surprisingly I watched your 3 videos on guided projects. I learned a lot from these videos. Now I am confident with React, Node, Rest API.
Thanks a lot for providing such amazing content🤘💯
Hello Yash, have you created any projects in react and node? Are you a fresher in web dev and looking for job opportunities in the same?
@@shivanigaddagimath5994 I am , yes
This was the best video I have watched that really helped me understand Express and JavaScript in general. I learned more in this tutorial than I could have ever imagined.
Simple and easy to follow but powerful tutorial. I loved it. Thank you!
I've just watched this tutorial, I fully understand the concepts and how to build a rest API thanks a lot
You improved so much
Your teaching style is awesome!!! I really enjoyed this video. Thanks so much!
Thank you! 🙌
been long time not doing this, such a good refresh!
I just wanted to say thank you so much for creating and sharing this video tutorial on REST API. Your video was incredibly helpful and saved me a lot of time. I really appreciated how easy it was to understand, and the quality of the video was excellent. I now feel much more confident in my ability to work with REST API. Your contribution to the community is greatly appreciated, and I'm sure many others have benefited from your expertise. Thanks again, and keep up the fantastic work!
It all finally makes sense. Thanks for this sir. And surely, I'd love to watch a full mearn stack tutorial
You are just the best instructor out there.
Thank you!
Ohhhh guys it's so amazing tutorial. The way he explain things are so amazing. Thanks
Honestly speaking.. it was clearly explained. I can’t wait for the you to make a tutorial on authentication.
Thanks
really amazing video I have ever seen on TH-cam.... appreciated🙌❤
Best Express tutorial I have watched, many thanks!
Sir, whoever clicked unlike button under your video, it is jealous of your talent. Excellent tutorial!
I like the way you explain buddy! I learned a lot through following your tutorials such as youtube-clone, covid-tracker projects. Keep it up, looking forward to more interesting projects
Thank you, more coming!
20:29 small correction: it should be res.send(users)
cleared my API basics like req, res, body, params and different types of requests. Thanks!
Hey Lohit, have you completed any projects using node? Are you a fresher and open to full-time roles in web development?
amazing!!,... this is the best tutorial have ever seen, clearly to understand and to take to practice! I really appreciate it.!..
I'm beginning with node , this helps me a lot.. I'm looking forward to finding more like this one!!
Just like you promised in the beginning of the video so practical. Great video
Beautifully explained.🔥
Thank you, I appreciate it! 😊
Another week, another JS Mastery tutorial. Love the content, keep it coming.
Thank you Corey, I appreciate it!
thank you man you made my life easy to learn.
I love the way you put out the best practices.
Thank you very much for such detailed epxlanation! The best REST API tutorial for beginners. 👍
Super clean didn't even see the hour go
This tutorial is actual teach new thing as well as save our time .
Awesome video ! Watched it without blinking
Thanks a lot, I love your way of explaining stuff
Thank you!
Great Documentation and Explanation my dear friend!
Thanks!
This is so far the best Web dev channel I've found. Great stuff, and you're really good at explaining things.
super useful tutorial! straight to the point!
Excellent, I learn an easy way with clear explanation. Thanks a much, really appreciate your effort.
Yes, Yes. Node.js Express with Mongo db as Database. Please------By the Way You are the Best So far I have seen. Like If you are pro, then it is very difficult to come down to beginner level and explain. But you nailed it Bro. Superb 👌👌
at 20:31 "res.send(users);" gave me the objects in the browser, BTW great tutorial man keep going, thank you!❤️🔥
Thanks!😊
I only got the "Hello" response, but not the objects and I don't know why
@@GabrielRodriguez-cr3vg because in the tutorial he only adds console.log(users);, but you need to change "res.send('Hello');" to "res.send(users);".
@@timw. Thank you very much dude! :)
@@GabrielRodriguez-cr3vg No probs dude :D
El mejor curso de la vida para aprender Express
the best teacher !!! very good explanation !!! thanks alot!
Thank you and very greatful to you man.
Very well explained. Just loved it.👌♥️
Thank you! 🙌
Hello Subhash! How many projects have you created in web development? Are you a 2021-passout and open to job opportunities at the moment?
Hello @Javascript Mastery...I was looking for REST API and I found your channel. The way you have explained the content kept me going on. I completed the entire video with enough understanding and it made my day giving me the required momentum to complete the assignments. Thank you for your time and efforts of putting forth the content in simple and concise manner. Looking forward for more videos including MongoDB.You rock 👍
Best tutorial ever . kindly continue a second part where you teach how to connect this to the mongoDb database
Very good introduction! Thank you.
fantastic really!you added a new subscriber!!
Thanks for the sub!
Great video! Super helpful and insgihtful on my development journey.
Awesome quality tutorial. Much appreciated!
Outstanding clarity.
Finally found the best video for NodeJs. waiting for MongoDB one :)
This is a great course. all the basic is covered in 1h tutorial. awesome work.
A React node project would be great.
MERN Stack coming soon! :)
@@javascriptmastery Great! Your videos are excellent by the way! I have learned a lot from you. 👍
@@javascriptmastery I'm waiting for it :D
@@javascriptmastery wow really waiting for something like this from you. :)
@@javascriptmasteryGraphQL too, that would be great! Thanks!
I really loved this tutorial. Learnt a lot!
This is GREAT, LOVE IT. Im waiting next video with MongoDB or Firebase. Thanks in advance
Great tutorial! Thank you! Yes please, extend this this tutorial with full stack!
Will do!
Thanks for this wonderful video !!! I seen many videos but yours is east to understand, kindly continue the same !!!
Amazing video. Got to understand the basics! Thank you very much !