修改NPM镜像源

npm 的服务在国外,大陆的服务器有时会拉取模块不顺畅。同时阿里云在大陆建立了一个 npmmirror 镜像站。现在有两种方式可以进行设置:

方式一:临时使用

  1. 在终端中输入以下命令:
1
npm --registry https://registry.npmmirror.com install [模块名]

如果安装成功,则表示设置成功。

方式二:修改本地配置,永久生效

  1. 在终端中输入以下命令:
1
npm config set registry https://registry.npmmirror.com
  1. 输入以下命令确认设置是否成功:
1
npm config get registry

如果输出结果为 https://registry.npmmirror.com,则表示设置成功。

无论使用哪种方式,都可以解决大陆服务器有时会拉取模块不通畅的问题。

注意:

• 如果需要恢复到默认的 npm 源,可以使用以下命令:

1
npm config set registry https://registry.npmjs.org

npmmirror 镜像站

Comments

Your browser is out-of-date!

Update your browser to view this website correctly.&npsb;Update my browser now

×