What is NPM?
Node package manager - sharing reusing code people wrote
What is a package?
Self contained code bundled to deliver and use
How can you create a package.json with npm?
npm init –yes, type it in
What is a dependency and how do you add one to a package?
another package that your package needs in order to work, Npm install packagename
What happens when you add a dependency to a package with npm?
Puts it in node-modules directory
Adds as a dependency in the json file and adds any other dependencies that package may need
Creates a file called package lock