Mac 使用 NVM

Undefined443發表於2024-06-01

安裝 & 更新

NVM 官方不建議使用 Homebrew 管理 NVM。

無論是安裝還是更新 nvm,都是執行下面的安裝指令碼:

wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash

參考:Install & Update Script

常用命令

命令 說明
nvm install <node-version> 安裝指定版本的 node。
nvm uninstall <node-version> 刪除指定版本的 node。
nvm use <node-version> 切換使用指定的版本。
nvm ls-remote 列出所有官方的 node 版本。
nvm ls 列出所有安裝的 node 版本。
nvm current 顯示當前使用的版本。
nvm alias 給不同版本新增別名。
nvm unalias 刪除自定義的別名。
nvm reinstall-packages 在當前 node 環境下,重新安裝指定版本號的 npm 包。

相關文章