Installing NPM Dependencies 非常慢卡住了怎么办

如果文章无法浏览或者图片失效 可前往原文浏览

原文链接 installing-npm-dependencies-非常慢卡住了怎么办直接点击即可前往访问。

npm install 卡住

今天写electron时候,使用electron-forge新建项目时候,尴尬的发现卡住了。

输入命令

electron-forge init  my-app

卡住

Installing NPM Dependencies

最后找到了合适的解决方案:

安装cnpm镜像

这个是比较常用的方法,我首先也是使用了这个方法。cnpm的安装方法,参考http://npm.taobao.org/

npm install -g cnpm --registry=https://registry.npm.taobao.org

cmd输入以上命令就可以了,然后输入cnpm代替原来的npm即可完美安装各种依赖文件。

继续重复之前的命令即可

[email protected] C:\Users\Administrator\AppData\Roaming\npm\node_modules\cnpm\node_modules\npm

√ Checking your system
√ Initializing Project Directory
√ Initial

你可能感兴趣的:(npm,前端,node.js)