npm error network 'proxy' config is set properly. See: 'npm help config'
原因
配置了网络代理导致无法正常联网
解决问题
配置关闭网络代理
1
npm config set proxy false
报错
报错:Unexpected end of JSON input while parsing near 'xxx'
原因
之前安装依赖被强制中断了,导致重新安装时安装错误
解决问题
清理缓存
1
npm cache clean --force
下载全局依赖时报错
1 2 3 4 5
npm ERR! Your cache folder contains root-owned files, due to a bug in npm ERR! previous versions of npm which has since been addressed. npm ERR! npm ERR! To permanently fix this problem, please run: npm ERR! sudo chown -R 65534:0 "/root/.npm"