npm
支持的最小 NPM 版本号是 5。
为所有项目设置全局注册中心
要为本地所有的项目设置注册中心,在任意终端窗口运行:
npm set registry http://localhost:4873/
上述代码将为当前操作系统用户设置注册中心,你可以在 ~/.npmrc
文件中看到。
为特定项目设置注册中心
在终端窗口打开项目的根目录,运行:
npm set registry http://localhost:4873/ --location project
上述命令会在项目根目录下的 .npmrc
文件设置注册中心。
或者通过指定 scope: @my-scope/auth
:
npm config set @my-scope:registry http://localhost:4873
在特定命令中使用注册中心
如果你需要单次使用,将 --registry http://localhost:4873/
添加到需要使用的命令之后。 一些例子:
npm ci --registry http://localhost:4873
npm install --registry http://localhost:4873
npm install lodash --registry http://localhost:4873