I have an issue that appears during the creation of a new App with the cmd:
ng new [MY_PROJECTNAME] --prefix [MY_Prefix]
What I did before:
install npm -g install angular-cli
install npm -g install typings
-> which shouldn't be necessary!npm cache clean
and then retriedVersions:
So the program keeps hanging for quite a while (7min or so...) in the stage as shown in the Picture.
Does any one now how to fix that?
Problem in cmd while creating new App:
Solution:
As Angular University already mentioned it was due to proxies wich i used during my work. At home it worked just fine.
npm can't download package correctly if a internet connection with proxies is used.
EDIT:
Sometimes the problem can be solved by restarting the computer and dooing npm chache clean
after that works on my Computer in something like 7 minutes. (Don't ask me why)
/EDIT
Hope it helps other Developers
Manuel