Skip to content

Instantly share code, notes, and snippets.

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