npm-intro Flashcards
What is NPM?
It consists of:
the website
the Command Line Interface (CLI)
the registry
What is a package?
packages are comprised of software and metadata.
A package is a file in a 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
What is a dependency and how to you add one to a package?
Any packages that a package depends on.
By default, npm install will install all modules listed as dependencies in package.json.
What happens when you add a dependency to a package with npm?
Install the dependencies in the local node_modules folder.
package.json file gets updated