update links

This commit is contained in:
AJ ONeal 2017-04-06 20:19:16 -06:00
parent c65932db08
commit a5d7a27747
2 changed files with 7 additions and 7 deletions

View File

@ -16,10 +16,10 @@ Automated node.js installers for OS X and Ubuntu
```bash
# install node.js without development dependencies
curl -fsSL bit.ly/nodejs-min | bash
curl -fsSL bit.ly/install-min-node | bash
# using wget instead of curl (Ubuntu)
wget -nv bit.ly/nodejs-min -O - | bash
wget -nv bit.ly/install-min-node -O - | bash
```
**node.js + dev tools**
@ -27,7 +27,7 @@ wget -nv bit.ly/nodejs-min -O - | bash
Install node.js and basic development tools - git, node, gcc, pkg-config, etc
```bash
curl -L bit.ly/nodejs-dev-install -o ./node-dev; bash ./node-dev
curl -L bit.ly/install-dev-node -o ./node-dev; bash ./node-dev
```
<!-- bit.ly/easy-install-node -->
@ -75,7 +75,7 @@ Type `agree` and hit enter to accept the license.
Now you can install node.js
```bash
curl -fsSL bit.ly/nodejs-dev-install -o /tmp/node-dev.sh; bash /tmp/node-dev.sh
curl -fsSL bit.ly/install-dev-node -o /tmp/node-dev.sh; bash /tmp/node-dev.sh
```
*TODO*: Make it easier to accepting the license (automatic?)
@ -83,7 +83,7 @@ curl -fsSL bit.ly/nodejs-dev-install -o /tmp/node-dev.sh; bash /tmp/node-dev.sh
### Ubuntu Linux
```bash
wget -nv bit.ly/nodejs-dev-install -O /tmp/node-dev.sh; bash /tmp/node-dev.sh
wget -nv bit.ly/install-dev-node -O /tmp/node-dev.sh; bash /tmp/node-dev.sh
```
### Other things you should know

View File

@ -3,7 +3,7 @@
# Installs node.js only (no development dependencies) for both Ubuntu and OS X
#
# See https://github.com/coolaj86/node-install-script
# See https://git.daplie.com/coolaj86/node-install-script
#
# curl -fsSL bit.ly/nodejs-min | bash
@ -14,7 +14,7 @@
NODEJS_NAME="node"
NODEJS_BASE_URL="https://nodejs.org"
BASE_URL="https://raw.githubusercontent.com/coolaj86/node-install-script/master"
BASE_URL="https://git.daplie.com/coolaj86/node-install-script/raw/master"
OS="unsupported"
ARCH=""
NODEJS_VER=""