Last active
November 14, 2017 06:26
-
-
Save djs070/4570480 to your computer and use it in GitHub Desktop.
Install NVM & Node 0.8.17 on Fedora/CentOS
This file contains 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