Monday 3 December 2012

Install node.js in CentOS server


Get the latest stable version from http://nodejs.org/download/

 cd /usr/local/src
 wget node-v0.6.8.tar.gz --> get the latest version
 tar zxvf node-v0.6.8.tar.gz
 cd node-v0.6.8
 ./configure
 make
 make install