What is NPM?
software registry
What is a package?
directory with files in it, includes package.json
How can you create a package.json with npm?
npm init –yes
What is a dependency and how do you add one to a package?
on-user-visible packages intended as development-only packages, that are unneeded in production
You can add dependencies to a package.json file from the command line or by manually editing the package.json file.
What happens when you add a dependency to a package with npm?
newly install package(s) gets added to the list of dependencies in your package. json file