npm, yarn设置国内源 和文件存放路径
yarn config set registry https://registry.npm.taobao.org -g yarn config set sass_binary_site http://cdn.npm.taobao.org/dist/node-sass -g
# 查看当前npm的软件源设置 npm config get registry # 用淘宝镜像源覆写之前的软件源地址 npm config set registry https://registry.npm.taobao.org/ # 再次运行第一条命令查看是否修改成功, 如果输出为*.*.tabao.org就是修改成功了. npm config get registry
# 查看当前npm的软件源设置 yarn config get registry # 用淘宝镜像源覆写之前的软件源地址 yarn config set registry https://registry.npm.taobao.org/ # 再次运行第一条命令查看是否修改成功, 如果输出为*.*.tabao.org就是修改成功了. yarn config get registry
https://zhuanlan.zhihu.com/p/542932711?utm_id=0
设置成新的路径 npm config set prefix="D:\Environment\nodejsRepository\node_global" npm config set cache="D:\Environment\nodejsRepository\node_cache"