大家好,又见面了,我是你们的朋友全栈君。
2021-11-21 16:53:52 npm淘宝镜像更换新域名
新域名为淘宝 NPM 镜像
新版本使用镜像有以下两种方式:
1.你可以使用我们定制的 cnpm (gzip 压缩支持) 命令行工具代替默认的 npm
:
$ npm install -g cnpm --registry=https://registry.npmmirror.com
2.或者你直接通过添加 npm
参数 alias
一个新命令:
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