npm audit fix报错解决方案

以下是我所遇到的问题及最终的解决方法:

问题一:

:\vue\mall-vue>npm audit fix
pm ERR! code ECONNRESET
pm ERR! errno ECONNRESET
pm ERR! network request to https://registry.npmjs.org/-/npm/v1/security/audits
ailed, reason: Client network socket disconnected before secure TLS connection
as established
pm ERR! network This is a problem related to network connectivity.
pm ERR! network In most cases you are behind a proxy or have bad network settin
s.
pm ERR! network
pm ERR! network If you are behind a proxy, please make sure that the
pm ERR! network 'proxy' config is set properly.  See: 'npm help config'

pm ERR! A complete log of this run can be found in:
pm ERR!     C:\Program Files (x86)\nodejs\node_cache\_logs\2019-04-02T15_02_00_
24Z-debug.log

问题一的解决方法:

发现是没有json文件的问题,输入:

npm init --yes

你可能感兴趣的:(npm问题,npm相关报错)