npm install은 오류, 실패, 네트워크 프록시 문제 솔루션을보고합니다.

프런트 엔드 프로젝트에서 작업 할 때 npm이 플러그인을 설치하고 갑자기 오류를보고했습니다.

질문은 다음과 같습니다.

npm ERR! code ENOTFOUND
npm ERR! errno ENOTFOUND
npm ERR! network request to https://registry.npmjs.org/babel-plugin-import failed, reason: getaddrinfo ENOTFOUND registry.npmjs.org registry.npmjs.org:443
npm ERR! network This is a problem related to network connectivity.
npm ERR! network
npm ERR! network If you are behind a proxy, please make sure that the
npm ERR! network 'proxy' config is set properly.  See: 'npm help config'

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\xdu\AppData\Roaming\npm-cache\_logs\2020-03-18T13_41_41_721Z-debug.log

Google 이후의 해결책은 다음과 같습니다.

npm config set proxy false

npm cache verify

추천

출처blog.csdn.net/UCB001/article/details/104955069