码迷,mamicode.com
首页 > 其他好文 > 详细

Visual Studio 中设置npm

时间:2018-01-07 22:02:00      阅读:1991      评论:0      收藏:0      [点我收藏+]

标签:src   under   命令   需要   body   fill   info   编辑   设置   

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

标签:src   under   命令   需要   body   fill   info   编辑   设置   

原文地址:https://www.cnblogs.com/yanglang/p/8231426.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!