NPM Node Package Manager Modules | NPM Tutorial for Beginners

preview_player
Показать описание


NPM Node Package Manager Modules | NPM Tutorial for Beginners

(00:00) Intro
(00:05) Welcome and Overview
(00:29) What is NPM?
(01:35) Goals for tutorial
(01:46) How to find the NPM documentation
(02:30) How to install an NPM package globally
(05:00) npm init
(07:05) Installing a production dependency
(07:51) Node modules
(09:47) Using a package in your application
(11:16) Installing a dev dependency
(12:04) NPM scripts
(14:07) Adding another production dependency
(14:42) Importing a package with an alias
(16:58) Searching for npm packages
(18:43) Semantic versioning
(21:15) How to update dependencies
(21:47) How to uninstall an NPM package

📚 References:

✅ Follow Me:

Was this tutorial about NPM aka Node Package Manager and node modules helpful? If so, please share. Let me know your thoughts in the comments.

#npm #node #modules
Рекомендации по теме
Комментарии
Автор

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

harishankaran
Автор

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!

codingispower
Автор

This is such a great series. I am enjoying every lesson. You got an amazing teaching style that really helps topics sink in. SUBBED!!

SimPwear
Автор

to learn programming from your videos is a truly educational and enjoyable experience 👏

fal
Автор

highly recommanded as quick introduction to getting familiar with npm

walker_sean
Автор

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

khaoulaschmidt
Автор

very clear and understandable. I am really enjoying this channel👍

fredericouedraogo
Автор

Highly recommanded to getting familiar with npm, thanks.

rokibgyimah
Автор

Thank you Mr Dave
Your way of teaching is very good
High quality and professional

yadyad
Автор

As an old sckool dev (backend PHP / MySQL) i discover another world. So many thx !

cyberpaimpol
Автор

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

ahmad-murery
Автор

one of the best tutor i found on youtube

Shejil
Автор

Bro, this video about Nervous Penpal Message, taught me so much and at a fast pace. Uni profs should take note of you.

Konslufius
Автор

Dave the Saver. when i get my first Dev Job, I get you Coffee drunk, Thanks alot once again

okumorphilip
Автор

such a beautiful channel! <3 thank you Dave, what is the next part?

kenansari
Автор

How do you say “nodemon”?

Probably everyone: “node mon”
Me at 2.30am on a school night: “no

tambow
Автор

npm as a "Ninja Pumpkin Mutants" i like it! 😂

gimtwi
Автор

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.

MguelMallet
Автор

Good series you got here, better make numbered tutorial like #-topic: tutorial

raymondmichael
Автор

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 <= this.last) {
return { done: false, value: this.current++ };
} else {
return { done: true };
}
}
};
};

// now it works!
for (let num of range) {
alert(num); // 1, then 2, 3, 4, 5
}

from javascript.info under symbol iterator

shanemarchan