-
常用的 npm 镜像源
-
npm 官方源:registry.npmjs.org
-
阿里云镜像源:registry.npmmirror.com
-
-
配置 npm、pnpm、yarn 的 registry
-
npm
查看 npm 的 registry
npm config get registry
配置 npm 的 registry
npm config set registry=https://registry.npmjs.org
-
yarn
查看 yarn 的 registry
yarn config get registry
配置 yarn 的 registry
yarn config set registry=https://registry.npmjs.org
-
pnpm
查看 pnpm 的 registry
pnpm config get registry
配置 pnpm 的 registry
pnpm config set registry=https://registry.npmjs.org
-