Installing Node.js and CoffeeScript

This tutorial is intended to provide a simple walk through on installing [[http://nodejs.org/|Node.js]] and [[http://coffeescript.org/|CoffeeScript]].

==Pre-reqs==
* Install `Git`
{{{ lang=bash
# RHEL/CentOS
sudo yum install git

# Debian/Ubuntu
sudo apt-get install git
}}}

==Node.js==
* Clone the node.js git repo
{{{ lang=bash
git clone https://github.com/joyent/node.git
}}}
* Compile and install
{{{ lang=bash
cd node &&
./configure &&
make &&
sudo make install
}}}

==CoffeeScript==
* Clone the CoffeeScript git repo
{{{ lang=bash
git clone https://github.com/jashkenas/coffee-script.git
}}}
* Run installer
{{{ lang=bash
sudo ./coffee-script/bin/cake install
}}}


Posted

in

by

Tags:

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *