0
点赞
收藏
分享

微信扫一扫

Hive 常用存储、压缩格式

佛贝鲁先生 2023-11-11 阅读 25

文章目录


前言


提示:生命并不短暂,短暂的是人。 --阿多尼斯

 yarn config set registry https://registry.npmjs.org --global
 npm install -g cnpm --registry=https://registry.npm.taobao.org
# 切换淘宝源:  
yarn config set registry https://registry.npm.taobao.org/
# 删除代理配置:
npm config set http-proxy null
npm config rm https-proxy
yarn config delete proxy
npm config rm proxy
# 删除node-module包:
rimraf node_modules  
#清除缓存:
npm cache clean --force 
npm cache verify 	
# 查看源
npm config get registry
# 下载淘宝镜像源
npm install -g cnpm --registry=https://registry.npm.taobao.org
# 切换淘宝镜像源
npm config set registry https://registry.npm.taobao.org
# 切换成官方
npm config set registry https://registry.npmjs.org/
举报

相关推荐

0 条评论