...
/Dependency Management: JavaScript
Dependency Management: JavaScript
In this lesson, we will discuss Dependency management with JavaScript.
We'll cover the following...
There are many different ways to track JavaScript dependencies. We’ll cover npm because it’s one of the most popular package managers. As was the case with Python dependency management, you’ll need to talk to your developers to find out how they’re managing dependencies if you’re not a JavaScript developer yourself.
Package.json
Package.json is npm’s configuration file. It specifies dependencies in addition to many other facets of a package. It’s similar to Python’s requirements.txt in that it lists direct dependencies but does not list transitive dependencies.
In order to find transitive dependencies, you need to use npm. ...