1、npm清理缓存
npm cache clean --force
如果要查看npm缓存的位置可以用下面的命令
npm cache dir
有人的npm可能没有这个命令,可以改用这个命令去查看
npm config list --json
如果是yarn就可以用下面的命令查看缓存位置
yarn cache dir
2、查看配置源
npm config get registry
3、修改配置源,由于原有淘宝npm源 https://registry.npm.taobao.org域名ssl证书过期需要修改为下面地址
npm config set registry https://registry.npmmirror.com
标签:npm,缓存,查看,cache,清理,registry,config From: https://www.cnblogs.com/zfreebird/p/18218369