npm、yarn、pnpm 设置最新国内镜像源(附官方镜像源和最新阿里源),以及 nrm 的使用教程
为了设置npm、yarn和pnpm的中国镜像源,你可以按照以下步骤进行:
- 对于npm,你可以使用以下命令:
npm config set registry https://registry.npm.taobao.org
- 对于yarn,你可以使用以下命令:
yarn config set registry https://registry.npmmirror.com
- 对于pnpm,你可以使用以下命令:
pnpm config set registry https://registry.npmmirror.com
如果你想要使用nrm来管理你的npm源,可以按照以下步骤进行:
- 首先安装nrm:
npm install -g nrm
- 使用nrm命令来切换源:
nrm use taobao
- 如果你想查看所有可用的源和当前使用的源,可以使用:
nrm ls
- 如果你想切换回官方源,可以使用:
nrm use npm
以下是设置为官方npm源的示例代码:
对于npm:
npm config set registry https://registry.npmjs.org
对于yarn:
yarn config set registry https://registry.yarnpkg.com
对于pnpm:
pnpm config set registry https://registry.npmjs.org
使用nrm切换回官方源:
nrm use npm
请注意,官方源的地址分别是 https://registry.npmjs.org
、https://registry.yarnpkg.com
和 https://registry.npmjs.org
。
评论已关闭