Loading npm dependencies from multiple registries

package.json does not support explicitly specifying which registries to route package requests to for its dependencies and devDependencies.

It is possible that the project uses dependencies from the npm registry and one or more GitHub Packages.

By default, npm install loads the modules from the npm package registry, https://registry.npmjs.org/, because this is the default value of "registry" in the npm config (a line in .npmrc or "npm config get registry"):

registry=https://registry.npmjs.org/

If this value is changed to say, "https://npm.pkg.github.com", npm install will try to load all project dependencies from GitHub Packages. It is possible, however, to override this value for a specific @SCOPE using the following syntax:

@SCOPE:registry=https://npm.pkg.github.com/

For instance, if the project has the following package.json:

{
  "dependencies": {
    "@octo-org/octo-app": "1.0.0",
    "react": "^16.9.0"
  }
}

and .npmrc:

@octo-org:registry=https://npm.pkg.github.com/

then npm install will download react from the npm registry and @octo-org/octo-app from GitHub Packages.

This configuration allows one registry to host multiple scopes, but a scope can only point to a single registry.

See also

"Hello, World!" Code Snippet Poster, JavaScript Programming Language
$14.99

A poster featuring the "Hello, World!" program in JavaScript programming language.

Borazine Molecule Poster, 2D Structure, English-Labeled
$19.99

A poster featuring the 2D structure of the borazine molecule.

правописание Morphemic Analysis Poster
$14.99

A poster featuring the morphemic analysis of the Russian word правописание.

Icelandic Alphabet Poster, English-Labeled
$17.99

The Icelandic alphabet chart.

Fretboard Poster
$19.99

A poster featuring a fretboard diagram.

npm exec: A new way to run commands from npm packages

npm v7 has introduced the new npm exec command which, like npx, can be used to run npm scripts "on the fly".

Generating data URLs in JavaScript

How to generate data URLs in JavaScript?

Receiving email with Node.js

How to receive email in Node.js?

Walking a directory in Node.js

How to list all files recursively within a directory tree in Node.js?

TensorFlow.js and linear regression

Building and training simple linear regression models in JavaScript using TensorFlow.js.

All prices listed are in United States Dollars (USD). Visual representations of products are intended for illustrative purposes. Actual products may exhibit variations in color, texture, or other characteristics inherent to the manufacturing process. The products' design and underlying technology are protected by applicable intellectual property laws. Unauthorized reproduction or distribution is prohibited.