[Npm] 設定Proxy Server
簡介
由於公司上網時必須透過代理伺服器(Proxy Server)才能連到外部網路,而使用Nodejs也需要設定代理伺服器(Proxy Server)。
設定Npm Proxy Server
-
設定Proxy Server與設定不檢查SSL
# 假設代理伺服器: http://proxy:80 npm config set https-proxy http://proxy:80 npm config set proxy http://proxy:80 npm config set strict-ssl false
-
如有帳密驗證的話,則可改為以下指令
npm config set https-proxy http://username:password@host:port npm config set proxy http://username:password@host:port npm config set strict-ssl false
-
取消Proxy Server設定
npm config delete https-proxy npm config delete proxy npm config delete strict-ssl
參考資料
如有錯誤或建議,歡迎留言指教,謝謝!!
(相關內容如有侵犯隱私或著作權,請協助通知刪除,感謝)
沒有留言:
張貼留言