The Disco Blog

Can you dig it?

Node.js in 3 Commands

A few short years ago when I started to explore Node.js, I remember the installation on my MacBook Pro required downloading the source, compiling and installing it, and then updating paths. And then you had to install NPM.

Since then, Node’s installation has been come tremendously easy and NPM is even bundled with Node. And yet, installing Node (and keeping up w/its rapid release schedule) is even easier with a nifty tool: Node Version Manager.

With Node Version Manager (or nvm) you can be up and running with Node in 3 easy commands.

Step 1: Download and install nvm.

downloading nvm
1
curl https://raw.github.com/creationix/nvm/master/install.sh | sh

Step 2: Reload your shell.

reloading .bash_profile
1
source .bash_profile

Step 2.5: Obtain a list of available node versions to install.

listing available node versions
1
nvm ls-remote

Step 3: Install your desired version of node.

installing node version 0.10.0
1
nvm install v0.10.0

After that’s done, execute a node -v to verify. Now wasn’t that easy? You bet!

Comments