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

切换淘宝镜像(cnpm)&从淘宝镜像切回npm

程序员文章站 2022-05-29 18:55:24
...

使用cnpm(淘宝镜像)

定制的 cnpm (gzip 压缩支持) 命令行工具代替默认的 npm:

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

或者你直接通过添加 npm 参数 alias 一个新命令:

alias cnpm="npm --registry=https://registry.npm.taobao.org \
--cache=$HOME/.npm/.cache/cnpm \
--disturl=https://npm.taobao.org/dist \
--userconfig=$HOME/.cnpmrc"
# Or alias it in .bashrc or .zshrc
$ echo '\n#alias for cnpm\nalias cnpm="npm --registry=https://registry.npm.taobao.org \
  --cache=$HOME/.npm/.cache/cnpm \
  --disturl=https://npm.taobao.org/dist \
  --userconfig=$HOME/.cnpmrc"' >> ~/.zshrc && source ~/.zshrc

淘宝镜像官方地址

使用淘宝源代替npm

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

从淘宝源切换至npm源

​​​​​​​npm config set registry=http://registry.npmjs.org

查看自己使用的源

npm get registry 
//https://registry.npmjs.org/