There are a variety of different package managers you can choose from but what makes them different from each other?
All dependencies of a project are kept in a configuration file package.json
. In this file you can see the version of the package used within the project.
Another file that also comes with npm is package-lock.json
file, this gives the exact version after evaluating the semantic versioning in package.json
.