npm WARN registry Unexpected warning for https://registry.npmjs.org/:

前端 未结 6 2264
独厮守ぢ
独厮守ぢ 2021-02-11 07:31

guys I am facing a strange problem here that my git-bash and my terminal when I am trying to use npm install I git this error my error message

some guy told me to clear

6条回答
  •  既然无缘
    2021-02-11 08:26

    I have also faced the same issue ("Unexpected warning for https://registry.npmjs.org/: Miscellaneous Warning ETIMEDOUT: request to https://registry.npmjs.org/@angular%2fcli failed, reason: connect ETIMEDOUT 104.16.22.35:443")

    Solution:

    Step 1: Delete package-lock.json file from your project

    Step 2: If your npm version is 5 and above. Then run the following command

    npm cache verify

    Step 3: Then run your parcel bunder

    npm install -g parcel-bundler

    Then finally, It was showing the "Network Connectivity" issue...!!!

提交回复
热议问题