使用nvm作nodejs的版本管理

以mac下爲例,前提:以安裝gitgit

$ git clone git@github.com:creationix/nvm.git ~/.nvm
$ source ~/.nvm/nvm.sh
# 安裝
$ nvm install v0.12.0
# 顯示當前本地安裝的全部 Node.js
$ nvm ls 
# 顯示服務器全部可用的 Node.js
$ nvm ls-remote
# 本地可用的 Node.js 中使用 0.12.0
$ nvm use 0.12.0
# 設置每次啓動默認版本
$ nvm alias default 0.12.0
#查看正在使用的版本
$ nvm current
v0.10.24

以指定版本執行腳本github

$ nvm run 0.10.24 myApp.js

卸載nvmvim

$ rm -rf ~/.nvm

 注意,若是重啓終端後,出現nvm command not foundbash

解決方案:服務器

Check your .bash_profile or .profile file. You most likely had a problem during the installation.spa

You should have the following at the end of one of those files.code

[[ -s $HOME/.nvm/nvm.sh ]] && . $HOME/.nvm/nvm.sh  # This loads NVM

在當前用戶的home目錄裏有個.bash_profile,若是沒有建一個orm

touch .bash_profilerem

 編輯.bash_profileget

vim .bash_profile


https://github.com/creationix/nvm

相關文章
相關標籤/搜索