'npm install' extremely slow on Windows -
for me npm install
extremely slow. i'm using windows 8.1 latest npm version. connection speed around 100mbit/s.
the project i'm trying install has around 20 packages/dependencies , takes around 30 minutes install dependencies ...
does have clue?
i ran same problem, using --verbose
peterh mentioned showed me source of problem: behind proxy, uses own certificates https-connections. according user "mletter1" on https://github.com/npm/npm/issues/8872 issue quite solved using http:
npm config set registry http://registry.npmjs.org/ --global
and voilĂ , it's fast again. of course should this, if you're ok cleartext npm infos on net ;-)
Comments
Post a Comment