Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 560 Bytes

npm配置.md

File metadata and controls

41 lines (32 loc) · 560 Bytes

npm配置淘宝源

1、安装nrm,源管理器

npm install -g nrm

2、查看可用的源,带*是当前使用的源

nrm ls

3、切换源

nrm use taobao

4、 添加源

nrm add xxx https://xxxx

5、删除源

nrm del xxx

Tips:yarn配置查看yarn configyarn的源管理器yrm,安装方式yarn global add yrm

npm 缓存清理

npm缓存位置

npm config get cache

npm缓存清理

  • --force强制清理,可简写-f
npm cache clean --force