Mac 安裝/更換node版本命令
收集node指令,方便查找漫雕,在mac終端里面輸入如下指令
全局安裝n模塊:sudo npm install n -g
更新npm到最新版本:sudo npm install npm@latest -g
安裝當(dāng)前穩(wěn)定版本:sudo n stable
安裝最新版本:sudo n latest
卸載指定node版本:sudo n rm 版本號
查看node所有版本:npm view node versions
7.切換node版本(不會刪除已安裝的其他版本):sudo n 版本號
node版本降級/升級(安裝指定版本): sudo n 版本號(例: sudo n 16.20.0)
查看版本號:node -v
清除node.js的cache: sudo npm cache clean -f
查看版本號:node -v
n ls 查看已經(jīng)安裝的版本list
sudo n xx.xx.xx 切換到具體版本號