Working with dependencies in JavaScript¶
NPM¶
Creating a package-lock.json
file¶
- Initialize the project:
- Install dependencies:
Support for the NPM package alias mechanism¶
The NPM package alias mechanism allows you to install packages under different names, which is convenient for using multiple versions of a library at the same time, replacing a dependency without changing its name in the code, and working with forks.
Instead of the standard version specification, a syntax is used that explicitly specifies which package and its version to install under the desired name. This simplifies testing, updates, and dependency compatibility.
In package.json
, the dependencies section may contain the following entry:
The Johnny console agent handles this entry correctly, recognizing that @babel/legacy-core is an alias for @babel/core version 7.12.0. The original package is taken into account during dependency analysis, preventing errors related to non-existent names.
Yarn¶
Creating a yarn.lock
file¶
- Initialize the project:
- Install dependencies:
Support for Yarn's selective dependency resolution mechanism¶
Yarn supports selective version resolution via the resolutions
field in package.json
, allowing you to specify specific versions of dependencies without editing yarn.lock
.
This mechanism is useful if you need to update a sub-dependency that is not updated frequently, fix a vulnerability in a transitive dependency, or lock a version due to a problematic update.
CodeScoring supports handling this mechanism in the Johnny console agent. Here are some scenarios for its operation:
Replacing a package¶
To replace a package via the resolutions mechanism, the following entry is added to package.json
. In this example, the parcel/watcher package is replaced with the favware/skip-dependency package.
The corresponding entry in the yarn.lock
file for this package will be as follows:
When installing, the build uses the favware/skip-dependency package version 1.2.2. The console agent correctly identifies this mechanism and analyzes the final package.
"@parcel/watcher@npm:@favware/skip-dependency@latest":
version: 1.2.2
resolution: "@favware/skip-dependency@npm:1.2.2"
Fixing the version of a transitive dependency¶
To fix the version via the resolutions mechanism, the following entry is added to package.json
. In this example, the version of the http-signature package is fixed to 1.3.4.
The entries in the yarn.lock
file corresponding to this package will be as follows:
When installing, the build will use version http-signature 1.3.4. The console agent analyzes the final version of the package.
http-signature@1.3.4, http-signature@~1.2.0:
version "1.3.4"
resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.3.4.tgz#a65b41193110b222364e776fd1ac848655a0e2f0"
Fixating the version with multiple dependencies¶
To fixate the version with multiple dependencies, the following entry is added to package.json
via the resolutions mechanism. In this example, the version of the yaml package is fixated to 2.2.2.
The entries in yarn.lock
corresponding to this package will be as follows:
dependencies:
yaml: ^1.10.0
yaml: ^2.2.1
yaml: ^1.7.2
yaml: ^1.10.2
yaml: ^2.3.4
yaml: 2.3.1
yaml: ^2.1.1
When installing, the build will use version 2.2.2. The console agent analyzes only the package version fixated in resolutions
.