Back

nodejs - npm yarn的代理方式 proxy

发布时间: 2024-03-26 22:19:00

refer to:https://stackoverflow.com/a/10304317/445908

使用npm 代理:

npm config set https-proxy http://proxy.company.com:8080

使用yarn :

yarn config set http-proxy http://192.168.0.104:8072

yarn config set https-proxy http://192.168.0.104:8072

Back