以下のサイトのまま.
yumでNode.jsが管理できることがポイント.
Installing Node.js via package manager
Enterprise Linux and Fedora
make環境を入れておく.
# yum install -y gcc-c++ make
# curl -sL https://rpm.nodesource.com/setup | bash -
リポジトリが登録されるので,インストール.
# ls /etc/yum.repos.d
...
nodesource-el.repo
# yum install -y nodejs
# node -v
v0.10.36
# npm -v
1.4.28