欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

npm设置淘宝镜像

程序员文章站 2022-05-29 17:10:49
...

方法一:

设置

  npm config set registry https://registry.npm.taobao.org

查看是否设置成功

  // 如果输出 https://registry.npm.taobao.org 表示设置成功
  npm config get registry

通过这种方式设置成功后,npm命令使用方式不变。

  // 安装vue
  npm i vue -S

还原为默认设置

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

方法二:

设置

  npm install -g cnpm --registry=https://registry.npm.taobao.org

查看是否设置成功

  cnpm config get registry

通过这种方式设置成功后,npm命令变为cnpm。但是npm命令仍然能用,只是cnpm命令使用npm的淘宝镜像地址。

  cnpm i vue -S