-
-
Save mrkeng/cf8ad70f3834f41c5c574c45f90514ca to your computer and use it in GitHub Desktop.
Install NVM & Node 0.8.17 on Fedora/CentOS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install git | |
yum install git -y | |
# get nvm | |
git clone git://github.com/creationix/nvm.git ~/nvm | |
# activate nvm | |
echo "source ~/nvm/nvm.sh" >> ~/.bashrc | |
source ~/.bashrc | |
# install node | |
nvm install 0.8.17 | |
nvm alias default 0.8.17 | |
# install express | |
npm install -g express | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment