Skip to content

Instantly share code, notes, and snippets.

@n7then
Last active December 31, 2024 09:39
Show Gist options
  • Save n7then/9a2236dc9696955865fb735f44e0cc4d to your computer and use it in GitHub Desktop.
Save n7then/9a2236dc9696955865fb735f44e0cc4d to your computer and use it in GitHub Desktop.
为npm设置代理

起因

众所周知的原因


适用

无特别限制.


配置

GitShell运行如下.

npm config set proxy http://127.0.0.1:2333
npm config set https-proxy http://127.0.0.1:2333

如果代理不支持HTTPS还需要修改仓库地址.
npm config set registry "http://registry.npmjs.org/"

参考

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment