1. Respect http methods (get, post, patch, put, delete) - restful api 2. A hybrid server does 2 jobs: - at '/users' : render an html page (SSR), when it knows that surely a browser is the client - at '/api/users' : sends the data as json, so that a mobile app or react can handle that at the client side
if you have completed the course, can you please tell me if a person who carefully watches and practices this playlist would be able to make REST APIs?
if you have completed the course, can you please tell me if a person who carefully watches and practices this playlist would be able to make REST APIs?
Hey Bro! I've a question... How did you get so good at these things (Practical + theoretical ) what're are your resources? Do you read the official docs or what??? I like the level of your intellect. Please Reply!!!
@@piyushgargdev Thanks! Fou your reply... Usually I watch English tutorials and I find them quicker and well explained than hindi ones. But Bro... Your Content is amazing.. It's quicker to learn and well explained. I found them best Hindi tutorials ever.
Hello Sir, Node js series is very good and easy to understand, as well.But couldnot find MERN Stack Video on your channel,needed that one for understanding CSR. anyone Please share the link if it is already there.
nice Teaching thanks for help, please add video number one by one, right now i have show API's using node and express ja but what next video i have no any idea.
amazing video piyush! just have a quick question. do we not need to export the mock data? you didn't export it but still the require function worked and i'm wondering if exporting is optional? will it work if i explicitly do it as- const mock_data=[ ]; module.exports=mock_data;
if you have completed the course, can you please tell me if a person who carefully watches and practices this playlist would be able to make REST APIs?
Sir currently I'm following this series , and it is great . But right now I have a doubt ki jab me apne browser me localhost kholta hun tab it is not as clean and neat as it is with you at @8:17 complete black screen with every users details written in a single separate line only mtlb ki wo ek line me hr user ko nipta rha h , dunno why , plz reply
Hello i found the solution to this problem that is by downloading a JSON extemnsion fopr us to view this page . i think piyush forgot to tell us that we need to download extension or something any way if helpful hit the like button on this video as well as on my comment
In my vs code when i try to add get, patch and delete into single route it is showing error in two lines one at the start of .patch and other at the start of .delete why is it like that ?
why do we need to write return res.json(users) while res.json(user) itself is working fine .. is it only for good readability or is there any future use of returned json
okay found his response in below comments , " @piyushgargdev 1 year ago You can do res.json() but it's a good practice to always have return statement as we want to stop execution of req res cycle"
sir jab response send karna hota hai to , ya to res.send() use karte hai ya to res.json() as per req. to mera doubt ye hai ki , return res.json(); use kare ya keval res.json(); kyuki in both result mil rha hai so how should we send the response , using return or without return , because in both the way it works ?? how ??why
Govt should give you an award for skill India, you saved money and time of lots of students and professionals. Great work.
Ek baar mai smj gaya bro . Great Teacher with perfect explanation
a very underrated playlist and TH-camr... 😢
1. Respect http methods (get, post, patch, put, delete) - restful api
2. A hybrid server does 2 jobs:
- at '/users' : render an html page (SSR), when it knows that surely a browser is the client
- at '/api/users' : sends the data as json, so that a mobile app or react can handle that at the client side
good job
if you have completed the course, can you please tell me if a person who carefully watches and practices this playlist would be able to make REST APIs?
Wow, came at your video for the 1st time and literally your way of explanation is incredible !
bhaiya apka content bohot awesome h! bht easy way mei sikha rha ho app, thank u bhai! u are really making some change in the world of web dev
best teacher
simple and clean code without any error
just wow.
if you have completed the course, can you please tell me if a person who carefully watches and practices this playlist would be able to make REST APIs?
Let's make this channel popular.
Best Node js series in youtube 🎇
Why is this playlist so underrated. This is so epic knowledge.❤❤❤❤❤
Hey Bro! I've a question... How did you get so good at these things (Practical + theoretical ) what're are your resources? Do you read the official docs or what??? I like the level of your intellect. Please Reply!!!
Great Question! To answer this question, I'll create a dedicated video on how I understand new technologies and frameworks!
@@piyushgargdev Thanks! Fou your reply... Usually I watch English tutorials and I find them quicker and well explained than hindi ones. But Bro... Your Content is amazing.. It's quicker to learn and well explained. I found them best Hindi tutorials ever.
@@piyushgargdevmost of the TH-camrs say this thing but never reveal
@@piyushgargdev bnao bhai, abhi nhi aya ig.
sir video please on this topic
One of the bestest video for understanding Restful API in node.js😊 thank you so much sir for an excellent explanation. Keep it up
mind Blowwwwwwwnnnnn. Kya sikhaya hai now I have to watch this NodeJs Series. 👏👏
Best video to understand REST API in node js
Thank you Piyush bhai,aap ki wajah se mere most of the problems solve ho jate hai ❤
Bhaiya sach me aisa lgg raha kitni baar thankyou kre aapko. Thankyou is a small word for you.🥰
your videos are just two good for beginner sir
Thanks sir. I saw you with Hitesh sir first time from there i continue following you.
Appreciate the video as much as it is less, fantastic , thanks sir
Wow wow wow, you nailed it bro. Your way of explaining things is very very good. 👍
thank you 100 times 😊😊for this video really it is very useful for me and other peoples
Best Explanation Ever. Keep making such videos. Clean, Concise and Concreate Content...
Piyush bhaiya i cannot thank you enough for this playlist.
Keep it going, bro! Your way of breaking things down is awesome.
I was exactly looking for this. Thanks man.
really happy to discover your channel bro...thanks a ton
It's really very best playlist for NODEJS
Nicely explained brother. Last video too🙌
this guy is so clean man u r my backend go to channel nice man
simple and clean
Wow... Thanks so much for these incredible tutorials...
Best series🔥
Thank you so much 😇
good explanation skills with soothing voice
Hello Sir, Node js series is very good and easy to understand, as well.But couldnot find MERN Stack Video on your channel,needed that one for understanding CSR. anyone Please share the link if it is already there.
Excellent clarification, thank for his awesome video
Behtareeeeeeeeeeeeennnnnnnnnnnn!!!!!!!!!!!!!!!!!!!!!!
very nice way of teaching brother
nice Teaching thanks for help,
please add video number one by one, right now i have show API's using node and express ja but what next video i have no any idea.
Well explained thanks
Pyush Love you Bro. For this type of content.
Thank you so much for this wonderful video
mlte hai next video me Kafi sare doubts clear ho gaye. isko definitely revise karna padega
Great explanation! Thank you.
thank you so much for all the Videos great Job .. can you please also make videos on step functions
great explanation
amazing video piyush! just have a quick question. do we not need to export the mock data? you didn't export it but still the require function worked and i'm wondering if exporting is optional? will it work if i explicitly do it as-
const mock_data=[ ];
module.exports=mock_data;
Awesome teaching Piyush Bhai.
if you have completed the course, can you please tell me if a person who carefully watches and practices this playlist would be able to make REST APIs?
@@AbdulRehman-ui3nj yes.. For sure
bhai maza aagaya
this is helpful ❤
module type k sath import kese karenge MOCK.json ko?
Thanks bhaiya
gooooooood
Damn, so good explaination
Thank you sir❤❤❤❤
thanku sir
excellent
what is the best practice to write an api in node js
1) Import or require?
2) js or ts?
ts
very very thanku sir
hey? does it mean that the backend and the frontend will deploy differently?
thank you
My learning
User find method when fetching single user data instead of using filter method because filter return the array and find return the object
Thanks bro
good
Awesome video sir 🔥
great
sir 1 Q tha jab express se routing kar skate hai tou node me HTTP or URL module Ku banye video bana ke bata dijiye ga
Hey, There is already a video on HTTP and URL module in this playlist.
Appreciated 👍
Sir currently I'm following this series , and it is great .
But right now I have a doubt ki jab me apne browser me localhost kholta hun tab it is not as clean and neat as it is with you at @8:17
complete black screen with every users details written in a single separate line only mtlb ki wo ek line me hr user ko nipta rha h , dunno why , plz reply
Hello i found the solution to this problem that is by downloading a JSON extemnsion fopr us to view this page .
i think piyush forgot to tell us that we need to download extension or something
any way if helpful hit the like button on this video as well as on my comment
i guess appne data ko formatting nahi kiya hai vs cod emein
in mac 8000 not opening new web window and not server start what should i do
source code of the class?
Wow❤❤❤❤❤❤
Every time I create a new package.json and write start in script, 'npm start' starts the server mentioned in the latest package. What about others?
In my vs code when i try to add get, patch and delete into single route it is showing error in two lines one at the start of .patch and other at the start of .delete why is it like that ?
Aj pata chala server side rendering and client side rendering kya hota hai
🔥🔥🔥🔥🔥🔥🔥🔥
bhai aapne 17 jan ko create kiya kya yeh video
pls req.parse aur req,params ke bech ka kya differnce hai why do we use this plz bring light into it
Please make full mern project like eCommerce paid or free with everything like depyoment via ci cd also
why dont you use nodemon?
what to do anyone help , erorr showing res not defined
why do we need to write return res.json(users) while res.json(user) itself is working fine .. is it only for good readability or is there any future use of returned json
okay found his response in below comments ,
"
@piyushgargdev
1 year ago
You can do res.json() but it's a good practice to always have return statement as we want to stop execution of req res cycle"
Sir pehli api me patch and delete request kese kar ni hai pata nahi chal raha to kya karu sir bahot try kiya idea hi nahi aa raha
your github repo to get your code?
Someone know how to connect to ms sql to get or post the data?
there is probably a library that needs to needs to be install by npm that library will interact with your mysql db
vid-13 ✅
Hey can someone explain me pls mere isme package.json file nhi ban rhi
run command -> npm init
Make sure node is installed on your device
To check this run this command -> node --version
How to get code link..?
yar jo code tha us ko github pe upload kar detay ab bar bar ye video kyun dekhain
Sir, apse milna ho ya direct baat krni ho to please....
Is code available for this?
SOURCE CODE???????!!!
Mom Says No Girlfriend 🤣
Best gear
sir jab response send karna hota hai to , ya to res.send() use karte hai ya to res.json() as per req.
to mera doubt ye hai ki ,
return res.json(); use kare ya keval res.json();
kyuki in both result mil rha hai
so how should we send the response , using return or without return , because in both the way it works ?? how ??why
You can do res.json() but it's a good practice to always have return statement as we want to stop execution of req res cycle.
i had same doubt
Thank you