跳到主要内容

切换镜像源

2024年11月08日
柏拉文
越努力,越幸运

一、registry


1.1 默认镜像源

# 查看当前源
npm get registry

或者

npm config list



# 还原到默认源
npm config set registry https://registry.npmjs.org/

1.2 淘宝镜像源

# 查看当前源
npm get registry

或者

npm config list

# 修改为淘宝源
npm config set registry https://registry.npmmirror.com/

二、@scope:registry


可以为特定的命名空间(scope)设置 registry,从而使 npm 安装该命名空间下的包时使用特定的镜像源或仓库。

# 为 @scope 命名空间设置专属的 registry 地址
npm config set @scope:registry <registry-url>

# 查看所有的 npm 配置,包括命名空间设置
npm config list

# 如果你想删除特定命名空间的 registry 设置,可以运行:
npm config delete @myorg:registry