This is hands down the best resource to learn node. Thank you so much. Have purchased notes too. Will finish this. If possible bring more resources in JS and React or anything else because the way you teach is so much fun and engaging to learn.
In case Nodemon is not working, "scripts": { "serve": "nodemon server.js" }, package.json main yeh replace kardo jahan script likha hai, and the n terminal main npm run serve likh do. chal jaayega
Great Teaching, i liked the way you explained the concepts! Why are you using the CommonJS module system in Node.js to export modules instead of the ES module system (export and import)?
Feeling Good Now , I Was Worring Since Past 4 Days Looking For Tutorials Watching Hours of Hours Videos But Still I Was Not Getting Anything. But Now I Feel Good After Finding Your Channel . I am Learning MERN Stack . I Have Completed Font-End. Now I am Going To Complete Back-End Just Because Of You Man. Thank You
From my understanding of the history, lodash was meant as a lightweight replacement for underscore. So lodash is effectively a play on words on underscore - "low dash", what does a dash - look like when its a bit lower to the ground? _ Why, an underscore of course. So that covers lodash in as much detail as it warrants.
@@HelloWorldbyprince Glad you like this. BTW I am 10+ years experienced dev with PHP/Laravel just started nodeJS series with your playlist. Its really good content. i will try to finish by this weekend and once i finish this willing to pay your fees voluntary.
As of current trends NodeJs for backend and React for frontend is popular with all industries and it will be for next 10 years until some other better technology language not introduced.
Hi, what do you use for autocompleting what you are writing. for example: when you type "con" it automatically shows you "console.log(" and then you just press tab i think to complete it.
If your nodemon not works use this put this in package.json file { "dependencies": { "nodemon": "^3.1.4" }, "scripts": { "start": "nodemon server.js" } } Delete all and pit this directly and then use npm run start and its work thanks me later ❤
if facing nodemon cmdlet not found mean nodemon package is installed in particular project not globally so in that case to run nodemon package from local node module use this command ``` npx nodemon server.js ```