Manage Node With NVM
06 October 2013
install nvm
- aptitude search nodejs
- git clone git://github.com/creationix/nvm.git ~/nvm (install git if not installed yet)
- source ~/nvm/install.sh (run shell script)
- source ~/.profile (this is to refresh profile)
- nvm (run nvm command)
nvm command
- nvm ls (List installed versions)
- nvm install v0.11.7 (install node)
- nvm use v.11.7 (set the version as current version)
- nvm alias default v0.11.7 (set the default version when source the shell script)
blog comments powered by Disqus