Stuck at npm install at fechMetadata checking installable status
npm install -g @angular/cli --verbose
After running this command I realized npm was having problems with the connection with registry.npmjs.org
To solve this:
- npm config set registry "http://registry.npmjs.org"
- npm set maxsockets 3
Viewed here
In my case I had to wait for a few minutes and npm finally installed by package. Also I suggest to use --verbose flag to see what's actually is going.