npm-intro Flashcards
What is NPM?
NPM is the package manager for the Node JavaScript platform. It puts modules in place so that node can find them, and manages dependency conflicts intelligently.
npm consists of three distinct components:
• the website
• the Command Line Interface (CLI)
• the registry
What is a package?
A package is a file or directory that is described by a package.json file. A package must contain a package.json file in order to be published to the npm registry.
How can you create a package.json with npm?
Npm init —yes
–yes, –y optional
What is a dependency and how to you add one to a package?
Dependency = a pack of code your application depends on Npm install (name of dependency)
What happens when you add a dependency to a package with npm?
Package.json gets updated; makes node_modules folder that includes the package you installed