Last active
May 25, 2023 10:35
-
-
Save valc93/c61bcb22641526434ef7 to your computer and use it in GitHub Desktop.
Install NodeJS in windows without Admin Rights
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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. |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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?