What is NPM?
allows developers to share their code and access code from other developers
What is a package?
a directory containing the files and code
How can you create a package.json with npm?
npm init -y or –y
What is a dependency and how do you add one to a package?
dependencies are packages required for your project. use npm install.
What happens when you add a dependency to a package with npm?
the node modules are added to your project