NPM Playbook - p-patel/software-engineer-knowledge-base GitHub Wiki
https://app.pluralsight.com/library/courses/npm-playbook/
NPM Basics
- Course repo/wiki - https://github.com/joeeames/NPMPlaybookCourse
What Is a Package?
- module - a single javascript file, package - a directory with one or more js file and a package.json file containing metadata about the package
Typical NPM Usage
- clone a repo
npm installin the clone repo to install dependenciesnpm startto start program (if configured in packages.json file)npm testto run tests (if configured in packages.json file)