Mac 上安裝node、npm
對於前端開發者,node、npm是必備安裝環境。目前,最推薦的使用nvm進行node版本管理及對應版本的npm安裝。具體安裝步驟如下:
1.使用curl或wget安裝nvm
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh|bash
or
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh|bash
執行結果如下圖一所示:
指令碼將nvm 內容儲存在~/.nvm,並把下面程式碼寫入~/.bash_profile, ~/.zshrc, ~/.profile, or ~/.bashrc檔案中。
exportNVM_DIR="$HOME/.nvm"[-s"$NVM_DIR/nvm.sh"]&&\."$NVM_DIR/nvm.sh"#This loads nvm
Tips:如果沒有.bash_profile,.zshrc,.profile,.bashrc,系統提示,需要手動新建.bashrc和.bash_profile檔案內容分別如圖二、圖三所示,然後再次使用curl或wget安裝nvm
圖二 .bashrc檔案
圖三 .bash_profile
2. 如果安裝nvm成功,使用nvm --version 如果出現對應版本號,則說明安裝成功。
3. nvm安裝成功後,可以先檢視遠端node版本,如圖四所示
圖四 遠端node版本
4.使用nvm install [node版本號],安裝成功如圖五所示
圖五 nvm 安裝node
Tips:如果安裝node速度很慢,可以使用下面命令使用淘寶映象進行安裝
export NVM_NODEJS_ORG_MIRROR=https://npm.taobao.org/mirrors/node npm --registry=https://registry.npm.taobao.org
常用命令
nvm use [node 版本]:選定node版本作為開發環境
nvm list : 檢視本地安裝的node版本
nvm uninstall [node 版本]:解除安裝對應版本的node環境
參考文獻
https://github.com/creationix/nvm/blob/master/README.md