NPM切换淘宝镜像

Introduce

比如脚手架工具,比如npm安装一些依赖,你会发现,安装的特别缓慢,而且还很容易失败,一般来说,会用淘宝镜像来安装,(淘宝镜像每十分钟拉取一起npm,所以几乎没问题)

Process

  1. 临时使用,在需要安装的目录下,把原先的代码, xxx指的是你要安装的东西

    npm install xxx
    

    改为

    npm --registry https://registry.npm.taobao.org install xxx
    
  2. 使用cnpm

    在命令行中,输入

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

    在后续的安装中,把之前的代码

    npm install xxx
    

    改为

    cnpm install xxx
    
  3. 永久使用

    在命令行中输入

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

    然后,输入

    npm config get registry
    

    如果显示

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

    就成功了,在后续的安装中

    npm install xxx
    

PS

实践最佳是第三种方式永久更换源

Reference

镜像地址

Author

{
  "Author":"jontyy",
  "email":"[email protected]"
}

你可能感兴趣的:(计算机网络)