1、‘proxy’ config is set properly. See: ‘npm help config’

解决方法:
方案一:
清除npm中的代理和缓存:
npm config set proxy false
npm cache clean --force
方案二:
npm中配置正在使用的代理:
npm config set proxy http://:
npm config set https-proxy http://:
也可取消代理配置
npm config set proxy null
npm config set https-proxy null