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

半城伤御伤魂 提交于 2021-01-21 06:13:18

问题


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 my caches and I did so my case just changed and now I git no error message the installing process is never done and I git some thing like this the second error message


回答1:


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  

or

npm install --save-dev parcel-bundler babel-preset-env 

Hopefully it should work.




回答2:


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...!!!




回答3:


I got this error when I try to install prisma globally, I solved this

1> npm cache clear --force

2> npm install npm




回答4:


If the answers above didn't help, please try also to run sudo npm install. Sometimes you just don't have permission to write.




回答5:


Downgrade npm to v4.6.1.

npm install npm@4

Version >= 5 is unstable.




回答6:


Step 1: Try to clear the cache first using

     npm cache clear --force

Step 2: Try to install again

    npm install -g @angular/cli


来源:https://stackoverflow.com/questions/52068565/npm-warn-registry-unexpected-warning-for-https-registry-npmjs-org

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!