Skip to content

Instantly share code, notes, and snippets.

@valc93
Last active May 25, 2023 10:35
Show Gist options
  • Select an option

  • Save valc93/c61bcb22641526434ef7 to your computer and use it in GitHub Desktop.

Select an option

Save valc93/c61bcb22641526434ef7 to your computer and use it in GitHub Desktop.
Install NodeJS in windows without Admin Rights
Source:https://groups.google.com/forum/#!topic/nodejs/6tsV6ZA9RC4
XiongJia Le:
1. NODE.exe
First, You need download the binary (.exe) from http://nodejs.org/dist/latest/ and save it to your local folder. (For x64: http://nodejs.org/dist/latest/x64/ )
Second, add your local folder to your PATH Environment.
2. NPM
First, downloads the NPM from http://nodejs.org/dist/npm/ (You can select a stable version in this folder. )
Second, extract the .zip/.tgz to your local folder and add this folder to you PATH Environment.
@alexkzr
Copy link
Copy Markdown

alexkzr commented Jan 3, 2018

This is wonderful, I followed the instructions, both node and npm -v display versions, however I cannot install anything via npm install - "If you are behind a proxy, please make sure that the npm ERR! network 'proxy' config is set properly. See: 'npm help config'"

Any idea what I can do to make it work?

@sethbergman
Copy link
Copy Markdown

sethbergman commented May 24, 2019

Depending on specific proxy settings:

npm set http_proxy="http://proxy.company.com:80" --global
npm set https_proxy="http://proxy.company.com:80" --global

https://docs.npmjs.com/misc/config#https-proxy

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