Difference between revisions of "NodeJS"

From RHS Wiki
Jump to navigation Jump to search
(Created page with "== npm Behind Proxy ==")
 
m
Tag: visualeditor
Line 1: Line 1:
== npm Behind Proxy ==
+
==npm Behind Proxy==
 +
<syntaxhighlight lang="bash">
 +
npm config set http-proxy http://user:pass@proxy.example.com:3128
 +
npm config set https-proxy http://proxy.example.com:3128
 +
</syntaxhighlight>

Revision as of 09:47, 29 March 2019

npm Behind Proxy

npm config set http-proxy http://user:pass@proxy.example.com:3128
npm config set https-proxy http://proxy.example.com:3128