A script to install basic development tools for node (git, node, gcc, pkg-config, etc)
Go to file
richdex14 aed892007f Clean up debugging from copying paths issue. 2017-09-04 14:35:23 -06:00
.gitignore Initial commit 2014-12-21 17:10:33 -07:00
LICENSE Initial commit 2014-12-21 17:10:33 -07:00
README.md fix typo 2017-06-14 15:18:53 -06:00
setup-deps-mavericks.bash Update setup-deps-mavericks.bash 2017-05-25 11:15:33 -06:00
setup-deps-ubuntu.bash Update setup-deps-ubuntu.bash to use portable `sudo_cmd` syntax 2017-09-04 13:35:16 -06:00
setup-min.sh Update setup-min.sh to use Daplie repo instead of coolaj86 private repo. 2017-09-01 20:54:43 -06:00
setup-node-mavericks.bash Update setup-node-mavericks.bash 2017-05-15 22:23:36 -06:00
setup-node-ubuntu.bash Clean up debugging from copying paths issue. 2017-09-04 14:35:23 -06:00
setup-raspbian.sh Create setup-raspbian.sh 2015-02-05 09:33:10 -07:00
setup.bash Update setup.bash to use portable `$sudo_cmd` syntax 2017-09-04 12:18:57 -06:00

README.md

Easy Install node.js

Automated node.js installers for OS X and Ubuntu

node.js only (no dev tools)

# install node.js without development dependencies
curl -fsSL bit.ly/install-min-node | bash

# using wget instead of curl (Ubuntu)
wget -nv bit.ly/install-min-node -O - | bash

node.js + dev tools

Install node.js and basic development tools - git, node, gcc, pkg-config, etc

curl -L bit.ly/install-dev-node -o ./node-dev; bash ./node-dev

Screencast

How to Setup a VPS for node.js Development - (3:06 installing node.js)

Choosing a specific version

echo "Current node.js version is $(curl -fsSL https://nodejs.org/dist/index.tab | head -2 | tail -1 | cut -f 1)"
# To install a specific version rather than defaulting to latest
# latest version at time of writing are v4.4.1 and v5.9.1
echo "v7.9.0" > /tmp/NODEJS_VER

Notes

Apple OS X

First you need to Install XCode Command Line Tools

xcode-select --install

Then you need to Accept the XCode License by running any command installed by Xcode with sudo. We'll use git.

sudo git --version

You can scroll to the bottom by hitting shift+G (capital G).

Type agree and hit enter to accept the license.

Now you can install node.js

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?)

Ubuntu Linux

wget -nv bit.ly/install-dev-node -O /tmp/node-dev.sh; bash /tmp/node-dev.sh

Other things you should know

This is what gets installed:

  • rsync
  • curl
  • wget
  • git
  • xcode / brew / build-essential / pkg-config / gcc
  • node (including npm)
  • jshint

NOTE: If you're running a node.js server on an edge server, I'd highly recommend that you also install fail2ban to secure ssh - especially if you haven't switched your server to use key-only authentication.