Please enable Javascript to view the contents

Npmproxy

 ·  ☕ 1 分钟
    🏷️

设置代理

1
2
npm config set proxy=http://127.0.0.1:11080
npm config set https-proxy http://127.0.0.1:11080
1
npm config set registry=http://registry.npmjs.org

取消代理

1
2
npm config delete proxy
npm config delete https-proxy
1
2
npm config set proxy null
npm config set https-proxy null