1. 程式人生 > 其它 >NVM安裝Node.js

NVM安裝Node.js

前言

前段時間,一個朋友接手了一個vue開發的前端專案,專案始終編譯通不過,啟動不起來。詢問我,我還是給了不少解決方法,他說試了都不行。過後突然想起之前學的前端視訊,有提到過要對開發前端專案時,要對node.js的版本進行管理。果然他是下了一個最新node.js版本進行編譯執行,降低了版本後,專案就正常編譯運行了。

前端最近幾年發展尤為迅速,版本迭代也很多,很多以前的專案是依賴於不同版本的node.js,於是為了方便處理各版本的node.js切換,就不能直接安裝node.js,需要通過NVM來進行安裝。

NVM (node.js version management),是一個node.js的版本管理工具,通過它可以快速安裝和切換不同版本的nodejs。

1、下載

在工具維護在github上,專案叫:coreybutler/nvm-windows,選擇最新或者次新版本下載即可,這裡使用次新1.1.7版本作為示例版本。

1.1.7版本直接下載地址:https://github.com/coreybutler/nvm-windows/releases/download/1.1.7/nvm-setup.zip

2、安裝

  • 下載完畢後,進行解壓縮,雙擊nvm-setup.exe進行安裝;
  • 選擇nvm安裝路徑(切記路徑資料夾命名不要帶中文或者空格
  • 選擇node.js的下載安裝路徑(切記路徑資料夾命名不要帶中文或者空格
  • 繼續下一步,最後一個介面點選最後點選Finish,安裝完成,啟動cmd,輸入nvm v,是否顯示版本,顯示則表明安裝成功

3、配置下載源

為了加快node.js和npm的下載速度,最好配置國內的node.js和npm下載源。在nvm的安裝路徑下,找到setting.txt檔案,新增如下程式碼

node_mirror: https://npm.taobao.org/mirrors/node/
npm_mirror: https://npm.taobao.org/mirrors/npm/

4、安裝管理node.js

  • 安裝,命令中的版本號可自定義,具體參考命令1查詢出來的列表

C:\Users\azure>nvm install 16.11.0
Downloading node.js version 16.11.0 (64-bit)...
Complete
Creating E:\Application\nvm\temp

Downloading npm version 8.0.0... Complete
Installing npm v8.0.0...

Installation complete. If you want to use this version, type

nvm use 16.11.0

  • 檢視本地安裝的所有版本;有可選引數available,顯示所有可下載的版本。

C:\Users\azure>nvm list

* 16.11.0 (Currently using 64-bit executable)
14.18.1

  • 使用特定版本
C:\Users\azure>nvm use 16.11.0
Now using node v16.11.0 (64-bit)
  • 解除安裝版本

C:\Users\azure>nvm uninstall 14.18.1
Uninstalling node v14.18.1... done

5、NVM命令解讀

命令視窗輸入 nvm

C:\Users\azure>nvm
Running version
1.1.7. Usage:
 # 顯示node的版本是32或64位版本 nvm arch : Show
if node is running in 32 or 64 bit mode.
# 安裝指定版本的node.js nvm
install <version> [arch] : The version can be a node.js version or "latest" for the latest stable version. Optionally specify whether to install the 32 or 64 bit version (defaults to system arch). Set [arch] to "all" to install 32 AND 64 bit versions. Add --insecure to the end of this command to bypass SSL validation of the remote download server.
# 列出所有已下載可用的node.js版本
nvm list [available] : List the node.js installations. Type "available" at the end to see what can be installed. Aliased as ls.
# 開啟nvm對node.js的版本管理
  nvm on                       : Enable node.js version management.
 #
關閉nvm對node.js的版本管理 nvm off : Disable node.js version management.
# 設定下載代理地址 nvm proxy [url] : Set a proxy to use for downloads. Leave [url] blank to see the current proxy. Set [url] to "none" to remove the proxy.
# 設定node下載映象地址 nvm node_mirror [url] : Set the node mirror. Defaults to https://nodejs.org/dist/. Leave [url] blank to use default url. # 設定npm下載映象地址
 nvm npm_mirror [url] : Set the npm mirror. Defaults to https://github.com/npm/cli/archive/. Leave [url] blank to default url.
# 解除安裝指定版本
 nvm uninstall <version> : The version must be a specific version.
# 指定node.js生效版本 nvm use [version] [arch] : Switch to use the specified version. Optionally specify 32/64bit architecture. nvm use <arch> will continue using the selected version, but switch to 32/64 bit mode.
# 設定不同node.js版本儲存路徑 nvm root [path] : Set the directory where nvm should store different versions of node.js. If <path> is not set, the current root will be displayed.
# 檢視nvm安裝版本 nvm version : Displays the current running version of nvm for Windows. Aliased as v.

6、總結

如果安裝後,使用nvm或者安裝node.js使用node命令不生效。1)重啟一下電腦,再試;2)檢查環境變數中是否存在 NVM_HOME、NVM_SYMLINK變數、及path是否引用;

總的來說,nvm安裝使用十分方便,要使用node.js請使用nvm將版本管理起來。

成功 = 正確的選擇 + 實際的行動 + 長期的堅持;