Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

npm install freezes and shows idealTree:chatting: sill idealTree buildDeps

Tags:

node.js

npm

npm freezes when I am installing anything. Even after deleting package-lock.json nothing changed. Here is a similar question. Can anyone tell how can I solve this problem??

enter image description here

like image 769
iabhishek15 Avatar asked Nov 15 '22 22:11

iabhishek15


1 Answers

It could be your having an issue with your certificates. Sometimes if you get this behavior there is an error in the certificate chain.

Try npm set strict-ssl false to see if this resolves your issue. Just remember if you do this you have disabled some of the security ssl gives you.

like image 76
Damo Avatar answered Jan 04 '23 14:01

Damo