npm设置代理和镜像源

npm 设置代理修改镜像源(npm config 使用)

npm 查看配置指令

npm config list

npm config list -l 可查看更多

C:\Users\by\jQuery_duplicate>npm config list
; cli configs
metrics-registry = "http://registry.npmjs.org/"
scope = ""
user-agent = "npm/5.0.0 node/v8.0.0 win32 x64"

; userconfig C:\Users\by\.npmrc
proxy = "http://127.0.0.1:1080/"
registry = "http://registry.npmjs.org/"

; builtin config undefined
prefix = "C:\\Users\\by\\AppData\\Roaming\\npm"

; node bin location = C:\Program Files\nodejs\node.exe
; cwd = C:\Users\by\jQuery_duplicate
; HOME = C:\Users\by
; "npm config ls -l" to show all defaults.

1. npm 设置代理

我的用第一个指令就够用了

npm config set proxy http://server:port
npm config set https-proxy http://server:port

案例: npm config set proxy http://10.176.163.58:3128

如果需要认证的话可以这样设置:

npm config set proxy http://username:password@server:port
npm confit set https-proxy http://username:password@server:port

如果代理不支持https的话需要修改npm存放package的网站地址。

npm config set registry http://registry.npmjs.org

2. npm 修改镜像源

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

3. 统一修改配置文件的方法

npm config edit 打开 .npmrc 文件 ,在文件中如下位置添加如下代码

;;;;
; npm userconfig file
; this is a simple ini-formatted file
; lines that start with semi-colons are comments.
; read `npm help config` for help on the various options
;;;;


registry=http://registry.npmjs.org/
proxy=http://10.127.0.0.1:1008/


;;;;
; all options with default values

Note: 我们在 npmrc 文件中修改 的时候都是 修改这个位置我们添加的 配置信息,其他都是默认信息 修改不了的

npm config 相关指令

npm config set   [-g|--global]
npm config get 
npm config delete 
npm config list
npm config edit
npm get 
npm set   [-g|--global]

aliases: c

你可能感兴趣的:(npm)