npm intro Flashcards
1
Q
What is NPM?
A
Node Package Manager, a software registry. Open source developers from every continent use npm to share and borrow packages, and many organizations use npm to manage private development as well.
2
Q
What is a package?
A
pre-written code to do something, build something, etc
3
Q
How can you create a package.json with npm?
A
npm init [–yes]
4
Q
What is a dependency and how to you add one to a package?
A
another package required by the first package
npm install name-of-dependency
5
Q
What happens when you add a dependency to a package with npm?
A
updates package.json and….
first 10 minutes on 7/5