Horje
npm install behind proxy Code Example
npm install behind proxy
npm config set strict-ssl false
npm config set registry "http://registry.npmjs.org/"
npm config set proxy http://<username><password>@proxy-server-url>:<port>
npm config set https-proxy http://<username><password>@proxy-server-url>:<port>
npm install
npm install not workjing behind proxy
npm config set strict-ssl false

# Set npm to use http instead of https
npm config set registry "http://registry.npmjs.org/"

# install your package with below syntax, can leave out the
# username:password section if your proxy does not require
# you to authenticate. The "http://" part is very important
npm --proxy http://username:password@cacheaddress.com.br:80 install packagename




Shell

Related
cat /etc/os-release Code Example cat /etc/os-release Code Example
get linux ver Code Example get linux ver Code Example
conda install openjdk=11 Code Example conda install openjdk=11 Code Example
what version of powershell do i have Code Example what version of powershell do i have Code Example
base64 decode in powershell Code Example base64 decode in powershell Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12