NPM Node Package Manager Modules | NPM Tutorial for Beginners

  Рет қаралды 37,361

Dave Gray

Dave Gray

Күн бұрын

Пікірлер: 72
@DaveGrayTeachesCode
@DaveGrayTeachesCode 3 жыл бұрын
Working with NPM is mandatory foundational knowledge as you learn Node.js. Node Package Manager (NPM) allows developers to create shareable modules and share them with the world - including us! Instead of re-creating the wheel, we can search for existing packages to import into our projects that meet our needs. If you're just starting out with Node JS, you may want to go to the beginning of this Node JS for Beginners playlist: kzbin.info/aero/PL0Zuz27SZ-6PFkIxaJ6Xx_X46avTM1aYw
@harishankaran1745
@harishankaran1745 10 ай бұрын
I was searching for node course with good tutor for a week and finally i found this playlist. It is awesome and very easy to understand. Thx dude
@walker_sean
@walker_sean 10 ай бұрын
highly recommanded as quick introduction to getting familiar with npm
@cyberpaimpol
@cyberpaimpol 2 жыл бұрын
As an old sckool dev (backend PHP / MySQL) i discover another world. So many thx !
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
You're welcome!
@SimPwear84
@SimPwear84 2 жыл бұрын
This is such a great series. I am enjoying every lesson. You got an amazing teaching style that really helps topics sink in. SUBBED!!
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
Thank you for the kind words! 💯
@khaoulaschmidt4560
@khaoulaschmidt4560 2 жыл бұрын
It's crazy how you explain things very well, I'm understanding easily ! thank you, I tried to understand it by documentation, but it's different et simple with these videos ! Thank you
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
Glad it was helpful! 💯
@codingispower1816
@codingispower1816 2 жыл бұрын
Love your channel Dave! I used some of your react tutorials to prepare for job interviews and they paid off! I am continuing to learn from you b/c your content helps me become even better in my current position. You rock!
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
That is awesome! So glad I could help you in your career! I love feedback like this! 💯🚀
@ajabgullb
@ajabgullb 4 ай бұрын
It is a very useful course and the teaching expertise are amazing. Thank you very much Dave for giving us this quality of content!
@ahmad-murery
@ahmad-murery 3 жыл бұрын
Good intro to NPM, I like NPM but I often see people install a lot of dependencies just to get benefit from some basic stuffs, Thirsty for more coding, Thanks Dave
@DaveGrayTeachesCode
@DaveGrayTeachesCode 3 жыл бұрын
Very true, Ahmad. It can be abused. At the same time, it has many good uses and is foundational knowledge for working with Node JS. Thanks for the comment! 💯
@fal8202
@fal8202 2 жыл бұрын
to learn programming from your videos is a truly educational and enjoyable experience 👏
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
Glad to hear that! Thank you! 🙏
@Shejil1234
@Shejil1234 Жыл бұрын
one of the best tutor i found on youtube
@DaveGrayTeachesCode
@DaveGrayTeachesCode Жыл бұрын
Thank you!
@rahulkumar-yk2ru
@rahulkumar-yk2ru 4 ай бұрын
highly ecommended lecture for NPM 😍
@Konslufius
@Konslufius 2 жыл бұрын
Bro, this video about Nervous Penpal Message, taught me so much and at a fast pace. Uni profs should take note of you.
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
Thank you! I do teach part-time (adjunct) at a university, too. 💯
@yadyad3832
@yadyad3832 Жыл бұрын
Thank you Mr Dave Your way of teaching is very good High quality and professional
@DaveGrayTeachesCode
@DaveGrayTeachesCode Жыл бұрын
You are very welcome!
@rokibgyimah8675
@rokibgyimah8675 10 ай бұрын
Highly recommanded to getting familiar with npm, thanks.
@Chi_reva
@Chi_reva Жыл бұрын
Dave the Saver. when i get my first Dev Job, I get you Coffee drunk, Thanks alot once again
@DaveGrayTeachesCode
@DaveGrayTeachesCode Жыл бұрын
Thank you! ☕☕☕☕
@MuhammadAwais-rp8po
@MuhammadAwais-rp8po 3 жыл бұрын
Love your explanation!
@DaveGrayTeachesCode
@DaveGrayTeachesCode 3 жыл бұрын
Thank you, Muhammad. 🙏💯
@kenansari
@kenansari 3 жыл бұрын
such a beautiful channel!
@DaveGrayTeachesCode
@DaveGrayTeachesCode 3 жыл бұрын
Thank you 🙏 Up next is the events module and Event Emitter. 🚀
@kenansari
@kenansari 3 жыл бұрын
@@DaveGrayTeachesCode 🙏
@fredericouedraogo2613
@fredericouedraogo2613 Жыл бұрын
very clear and understandable. I am really enjoying this channel👍
@sanmarchen
@sanmarchen Жыл бұрын
Best teacher ever😇
@kostiantynkarzhanov9216
@kostiantynkarzhanov9216 Жыл бұрын
Thank you! Very well explained! 💛
@yamaikaguyachi
@yamaikaguyachi 6 ай бұрын
thanks for this. really appreciated!
@tambow44
@tambow44 10 ай бұрын
How do you say “nodemon”? Probably everyone: “node mon” Me at 2.30am on a school night: “no demon!!!!!”
@DaveGrayTeachesCode
@DaveGrayTeachesCode 10 ай бұрын
😆
@benjaminnwokolo2935
@benjaminnwokolo2935 2 жыл бұрын
Learnt a lot 💯🔥
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
Glad to hear that!
@shanemarchan658
@shanemarchan658 3 жыл бұрын
hey Dave, I know this is off topic. but can u explain this function. const range = (start, stop, step) => Array.from({ length: (stop - start) / step + 1}, (_, i) => start + (i * step)); from mdn under array.from as well as let range = { from: 1, to: 5 }; // 1. call to for..of initially calls this range[Symbol.iterator] = function() { // ...it returns the iterator object: // 2. Onward, for..of works only with this iterator, asking it for next values return { current: this.from, last: this.to, // 3. next() is called on each iteration by the for..of loop next() { // 4. it should return the value as an object {done:.., value :...} if (this.current
@DaveGrayTeachesCode
@DaveGrayTeachesCode 3 жыл бұрын
Definitely off the topic of this video tutorial, but I could do a tutorial on the topic you are asking about sometime. 😀 MDN is a great source to look up each part of your question such as symbol.iterator: developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/iterator
@gimtwi
@gimtwi 3 жыл бұрын
npm as a "Ninja Pumpkin Mutants" i like it! 😂
@DaveGrayTeachesCode
@DaveGrayTeachesCode 3 жыл бұрын
😂😂
@loikvokhidov7688
@loikvokhidov7688 Жыл бұрын
So easy to follow🤘
@null_raider8184
@null_raider8184 4 ай бұрын
Why is your icons of node-modules and npm different from mine?
@MguelMallet
@MguelMallet 2 жыл бұрын
hi Dave Im using the latest version of node. One thing i noted when using the function to format date fron date-fns. the syntax as you write it result in application crash telling me date is not defined. the variable date need to be defined first like const d = new date(). then we use the date format function: console.log(format(d, 'yyyy-MMM-dd') then i get the proper result.
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
You must have missed where I created the new date because I did not crash and this has not changed due to a Node release.
@vandankakrecha4771
@vandankakrecha4771 7 ай бұрын
I have one issue!!! When i type 'nodemon' and enter after installing it terminal gives error that first it gives path and then it says script is disabled on this system. Anyone can give solution of it.....
@sonamohialdin3376
@sonamohialdin3376 2 жыл бұрын
So good tutorial
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
Thank you, Sona! 💯
@raymondmichael4987
@raymondmichael4987 2 жыл бұрын
Good series you got here, better make numbered tutorial like #-topic: tutorial
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
Thank you! 🙏 The playlist is provided in order here: kzbin.info/aero/PL0Zuz27SZ-6PFkIxaJ6Xx_X46avTM1aYw
@jiweihe3413
@jiweihe3413 2 жыл бұрын
thanks. I encountered some problem installing nodemon... It cannot be run after installation: "nodemon : The term 'nodemon' is not recognized as the name of a cmdlet, function, script file, or operable program. "
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
Follow their installation guide here: www.npmjs.com/package/nodemon
@TravinskiyVladislav
@TravinskiyVladislav 2 жыл бұрын
Thank you again
@FacundoCastellano
@FacundoCastellano Жыл бұрын
thanks bro!
@kingsleyunorji5044
@kingsleyunorji5044 2 жыл бұрын
whenever i type this command "npm i nodemon -g " it shows this changed 32 packages, and audited 33 packages in 1s 3 packages are looking for funding run `npm fund` for details found 0 vulnerabilities i then went ahead to type nodemon in the terminal and i get this nodemon: command not found any advise to give please
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
The first part of the message is a standard type of return after installing a package with npm. The second part - why just type nodemon in the terminal? It must run on Node. In this video, I believe I show how to set up the script you need in your package.json file to run it.
@kingsleyunorji5044
@kingsleyunorji5044 2 жыл бұрын
solved it
@kingsleyunorji5044
@kingsleyunorji5044 2 жыл бұрын
@@DaveGrayTeachesCode solved it thank you
@sara-gd2uh
@sara-gd2uh Жыл бұрын
@@kingsleyunorji5044 how please , i'm facing the same problem
@michaelrodrigues6372
@michaelrodrigues6372 2 жыл бұрын
is there a repo of this node course in your github?
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
Hi Michael - not for the first 5 chapters as they are only examples. Starting with Chapter 6, each lesson has source code available here: github.com/gitdagray/node_js_resources
@alirezahekmati7632
@alirezahekmati7632 2 жыл бұрын
🚀
@Chi_reva
@Chi_reva Жыл бұрын
Maybe you should apply for a lecturing Job Dave
@DaveGrayTeachesCode
@DaveGrayTeachesCode Жыл бұрын
Thanks - I was previously at a university full-time. Now part-time university and full-time dev.
@ahmedalsayeh5837
@ahmedalsayeh5837 4 ай бұрын
Thanks
@reezus_
@reezus_ Жыл бұрын
First, I want to say thank you and great job with this video. However, even though you say for beginners, I feel your tutorials are hard for someone who's not familiar with what your teaching and is actually a beginner. When i watch your tutorials, i need to go learn elsewhere first then come back here to enhance what i know and even at that the new concepts i get from your video are always hard to understand. Just constructive criticism, great video still!
@ArabellaWilbur-c2f
@ArabellaWilbur-c2f 3 ай бұрын
Moore Kevin Lee Anthony Lee Charles
@noweare1
@noweare1 Ай бұрын
So many good nuggets in this one beside the main course. So many people get tripped on on the xx.xx.xx versioning system and what it means. Thanks for including those details that many others would just not bring up.
Node Events Tutorial | Node.js Tutorials for Beginners
15:32
Dave Gray
Рет қаралды 36 М.
Air Sigma Girl #sigma
0:32
Jin and Hattie
Рет қаралды 45 МЛН
Andro, ELMAN, TONI, MONA - Зари (Official Audio)
2:53
RAAVA MUSIC
Рет қаралды 8 МЛН
Why I Switched From NPM/Yarn to PNPM And Why You Should Too!
13:54
What is NPM, and why do we need it? | Tutorial for beginners
14:27
Coder Coder
Рет қаралды 338 М.
5 Signs of an Inexperienced Self-Taught Developer (and how to fix)
8:40
UV for Python… (Almost) All Batteries Included
17:35
ArjanCodes
Рет қаралды 89 М.
JavaScript Modules Crash Course
48:38
freeCodeCamp.org
Рет қаралды 51 М.
npm for absolute beginners
15:32
Kevin Powell
Рет қаралды 22 М.
NPM (Node Package Manager) - Javascript In Depth
59:35
Tech with Nader
Рет қаралды 2,2 М.