NodeJS Update

Chung-chun Lo
1 min readJun 23, 2020

--

每次都會忘記 NodeJS 的更新方式,在這記錄一下

目前版本

首先確認目前版本是不是最新版。

$ node -v
v x.x.x

如果沒有安裝 n Package 的話安裝一下, n Package 是用來管理 NodeJS 版本的第三方套件。

$ npm install -g n

選擇版本

安裝完 n Package 後就可以選擇要使用的 NodeJS 版本,分別有

  • stable (目前穩定版本)
  • latest (目前最新版本)
  • lts (長期支援版本)

指令如下

(Use this command to install the stable node release.)
$ sudo n stable
(Use this command to install/update the latest node release.)
$ sudo n latest
(Use this command to install/update the latest LTS node release.)
$ sudo n lts

檢查版本

更新或安裝完後確認目前版本是否為剛剛指定的版本

$ node -v
v x.x.x

--

--