标签:style blog http color os 使用 文件 div sp
原文:http://my.oschina.net/deathdealer/blog/208919
很多公司上网需要使用公司提供的代理服务器,所以用NPM安装JS时可能需要配置代理,本文介绍NPM的配置相关基础知识,然后再介绍如何为NPM配置代理服务器。
【例】:
我是这样设置的
$ npm config set proxy http://192.168.80.222:3128 $ npm config set registry http://registry.npmjs.org/
命令行参数。 --proxy http://server:port
即将proxy的值设为http://server:port
。
环境变量。 以npm_config_
为前缀的环境变量将会被认为是npm的配置属性。如设置proxy可以加入这样的环境变量npm_config_proxy=http://server:port
。
用户配置文件。可以通过npm config get userconfig
查看文件路径。如果是mac系统的话默认路径就是$HOME/.npmrc
。
全局配置文件。可以通过npm config get globalconfig
查看文件路径。mac系统的默认路径是/usr/local/etc/npmrc
。
内置配置文件。安装npm的目录下的npmrc文件。
默认配置。 npm本身有默认配置参数,如果以上5条都没设置,则npm会使用默认配置参数。
$ npm config set proxy http://server:port $ npm config set https-proxy http://server:port
如果代理需要认证的话可以这样来设置。
$ npm config set proxy http://username:password@server:port $ npm config set https-proxy http://username:pawword@server:port
如果代理不支持https的话需要修改npm存放package的网站地址。
$ npm config set registry "http://registry.npmjs.org/"
标签:style blog http color os 使用 文件 div sp
原文地址:http://www.cnblogs.com/sandycoding/p/3991986.html