Visual Studio 中设置npm

Posted 杨浪

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Visual Studio 中设置npm相关的知识,希望对你有一定的参考价值。

VS2017自带的npm会去国外的镜像下载文件, 奇慢无比, 还是马云家淘宝的镜像适合国内用户.

 

淘宝npm镜像地址:  https://registry.npm.taobao.org

 


 

VS中使用淘宝npm镜像, 需要以下两步:

 

步骤1.  修改npm config, 指向淘宝npm镜像, 有3种方法:   

 

1.通过config命令

 

npm config set registry https://registry.npm.taobao.org 

 

 

npm info underscore (如果上面配置正确这个命令会有字符串response

 

 

2.命令行指定

 

npm --registry https://registry.npm.taobao.org info underscore 

 

 

3.编辑  ~/.npmrc 加入下面内容

 

registry = https://registry.npm.taobao.org

 

步骤2.  修改 VS 的 Web Package Management

            如图, 添加以下三项, 然后就可以愉快的在VS中使用淘宝npm镜像了.

技术分享图片

 

以上是关于Visual Studio 中设置npm的主要内容,如果未能解决你的问题,请参考以下文章

在 Visual Studio 2015 中设置 TSLint

如何在 Visual Studio 2010 的 C++ googletest 项目中设置代码覆盖率

有没有办法在Visual Studio Code中设置环境变量?

在 Visual Studio (C++) 中设置断点问题

如何在 Visual Studio 中设置让 C++/C 代码只在一个线程中运行以测试运行时间?

如何在 Visual Studio 2010 中设置单独的 Boost 测试项目