What is NPM?
Node Package Manager where you can get packages created by other developers and share your own
What is a package?
Basically a file/files with reusable code block
How can you create a package.json with npm?
npm init –yes
What is a dependency and how to you add one to a package?
Dependency shows the package installed.
using npm install packageName
What happens when you add a dependency to a package with npm?
It creates a node module with relevant files