在上一篇文章《》中介紹了 Node.js 版本分為 LTS 和 Current 系列,當我們需要在本地開發環境同時安裝 LTS 版本和 Current 版本時,就需要對 Node.js 版本進行版本管理。
比如本地需要同時安裝 Node.js 8.0.0 和 Node.js 17.0.0。
為了能夠對 版本進行版本管理,我整理了 3 款非常實用的 Node.js 版本管理工具,讓大家能夠自由的切換本地環境不同的 Node.js 版本。
⭐ Github stars: 60K+
nvm 是一款 Node.js 版本管理工具,允許使用者通過命令列快速安裝、切換和管理不同的 Node.js 版本。
圖片來自:github
nvm 只適用於 macOS 和 Linux 使用者的專案,如果是 Windows 使用者,可以使用 nvm-windows 、nodist 或 nvs 替換。
macOS 下載方式:
# 方式1 瀏覽器開啟下面連結下載 https://github.com/nvm-sh/nvm/blob/v0.39.1/install.sh # 下載完成後,通過命令安裝 sh install.sh # 方式2 推薦 curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash # 方式3 wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
安裝過程中如果遇到一些奇怪的問題,可以檢視下 nvm 補充說明。
nvm ls # 檢視版本安裝所有版本 nvm ls-remote # 檢視遠端所有的 Node.js 版本 nvm install 17.0.0 # 安裝指定的 Node.js 版本 nvm use 17.0.0 # 使用指定的 Node.js 版本 nvm alias default 17.0.0 # 設定預設 Node.js 版本 nvm alias dev 17.0.0 # 設定指定版本的別名,如將 17.0.0 版本別名設定為 dev
⭐ Github stars: 16.7K+
n 是一款互動式的 Node.js 版本管理工具,沒有子指令碼,沒有組態檔,也沒有複雜的 API,使用起來非常簡單。
n 只適用於 macOS 和 Linux ,不適用於 Windows。
可以使用 npm 直接安裝到全域性:
npm install n -g
n # 顯示所有已下載版本 n 10.16.0 # 下載指定版本 n lts # 檢視遠端所有 LTS Node.js 版本 n run 10.16.0 # 執行指定的 Node.js 版本
輸入 n -h
檢視幫助資訊,主要命令如下:
n Display downloaded Node.js versions and install selection n latest Install the latest Node.js release (downloading if necessary) n lts Install the latest LTS Node.js release (downloading if necessary) n <version> Install Node.js <version> (downloading if necessary) n install <version> Install Node.js <version> (downloading if necessary) n run <version> [args ...] Execute downloaded Node.js <version> with [args ...] n which <version> Output path for downloaded node <version> n exec <vers> <cmd> [args...] Execute command with modified PATH, so downloaded node <version> and npm first n rm <version ...> Remove the given downloaded version(s) n prune Remove all downloaded versions except the installed version n --latest Output the latest Node.js version available n --lts Output the latest LTS Node.js version available n ls Output downloaded versions n ls-remote [version] Output matching versions available for download n uninstall Remove the installed Node.js
⭐ Github stars: 8.4K+
fnm 是一款快速簡單 ? 的 Node.js 版本管理器,使用 Rust 構建。
圖片來自:freecodecamp
主要特點包括:
.node-version
和 .nvmrc
檔案;macOS / Linux 環境:
# bash, zsh and fish shells curl -fsSL https://fnm.vercel.app/install | bash
Windows 環境:
# 管理員模式開啟終端,安裝後只能使用管理員模式開啟使用 choco install fnm # 安裝完成還需要手動設定環境變數
Linux/macOS/Windows 環境也可以直接下載二進位制檔案安裝,下載地址:github.com/Schniz/fnm/…
fnm -h # 檢視幫助 fnm install 17.0.0 # 安裝指定 Node.js 版本 fnm use 17.0.0 # 使用指定 Node.js 版本 fnm default 17.0.0 # 設定預設 Node.js 版本
本文為大家推薦了 3 款非常常用的 Node.js 版本管理工具,大家可以按照自己實際需求選擇使用。
如果大家有更好的工具,歡迎留言分享。
更多node相關知識,請存取:!
以上就是Node.js如何進行版本管理?3款實用版本管理工具分享的詳細內容,更多請關注TW511.COM其它相關文章!