NPM淘宝镜像(最新版本)于2021-11-21 16:53:52发布新版本npm镜像[通俗易懂]

2022-07-31 12:57:47 浏览数 (1)

大家好,又见面了,我是你们的朋友全栈君。

2021-11-21 16:53:52 npm淘宝镜像更换新域名

新域名为淘宝 NPM 镜像

新版本使用镜像有以下两种方式:

1.你可以使用我们定制的 cnpm (gzip 压缩支持) 命令行工具代替默认的 npm:

代码语言:javascript复制
$ npm install -g cnpm --registry=https://registry.npmmirror.com

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

代码语言:javascript复制
alias cnpm="npm --registry=https://registry.npmmirror.com 
--cache=$HOME/.npm/.cache/cnpm 
--disturl=https://npmmirror.com/dist 
--userconfig=$HOME/.cnpmrc"

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

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/128460.html原文链接:https://javaforall.cn

0 人点赞