Skip to content

Instantly share code, notes, and snippets.

@prcongithub
Last active December 28, 2015 18:19
Show Gist options
  • Save prcongithub/7542612 to your computer and use it in GitHub Desktop.
Save prcongithub/7542612 to your computer and use it in GitHub Desktop.
NodeJS installation
yum groupinstall "Development Tools"
yum install gcc-c++
cd /usr/src
wget http://nodejs.org/dist/v0.10.4/node-v0.10.4.tar.gz
tar zxf node-v0.10.4.tar.gz
cd node-v0.10.4
./configure
make
make install
yum update npm
npm install forever -g
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment