Skip to content

Quick and easy installation

pufuwozu edited this page Aug 6, 2010 · 4 revisions

Max OS X

Install homebrew then:

brew install node.js  

or get your mac up to speed with cider.

Ubuntu 9.04

sudo apt-get install build-essential libc6-dev-i386 lib32stdc++6 git-core
sudo ln -s /usr/lib32/libstdc++.so.6 /usr/lib32/libstdc++.so
git clone git://github.com/ry/node.git
cd node
./configure 
make
sudo make install  

thanks Travis Swicegood.

Windows (Cygwin)

Install the following packages using setup.exe:

  • gcc-g++
  • make
  • python
  • git

Run the following commands:

git clone git://github.com/ry/node.git
cd node
./configure 
make
make install