2021-05-12 14:32:11
CentOS 7.6下安裝 NVM 管理不同版本的 Node.js
nvm全稱Node Version Manager是 Nodejs 版本管理器,它讓我們能方便的對 Node.js 的版本進行切換。 nvm 的官方版本只支援 Linux 和 Mac。 Windows 使用者,可以用 nvm-windows。詳情請點選官方說明。
安裝NVM
查資料得出,要使用 curl 或 wget 來安裝nvm(版本可以選用官網最新版):
[linuxidc@localhost www.linuxidc.com]$ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.0/install.sh | bash
輸出範例如下:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 13527 100 13527 0 0 22484 0 --:--:-- --:--:-- --:--:-- 22545
=> Downloading nvm from git to '/home/linuxidc/.nvm'
=> 正克隆到 '/home/linuxidc/.nvm'...
remote: Enumerating objects: 286, done.
remote: Counting objects: 100% (286/286), done.
remote: Compressing objects: 100% (256/256), done.
remote: Total 286 (delta 34), reused 93 (delta 17), pack-reused 0
接收物件中: 100% (286/286), 146.90 KiB | 0 bytes/s, done.
處理 delta 中: 100% (34/34), done.
=> Compressing and cleaning up git repository
=> Appending nvm source string to /home/linuxidc/.bashrc
=> Appending bash_completion source string to /home/linuxidc/.bashrc
=> Close and reopen your terminal to start using nvm or run the following to use it now:
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && . "$NVM_DIR/bash_completion" # This loads nvm bash_completion
或:
[linuxidc@localhost www.linuxidc.com]$ wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.0/install.sh | bash
注意:安裝完了,重新開啟終端 Terminal來重新啟動對談
安裝 Node.js
最新版
1、安裝最新版 Node.js 命令:
[linuxidc@localhost www.linuxidc.com]$ nvm install node
Downloading and installing node v12.11.1...
Downloading https://nodejs.org/dist/v12.11.1/node-v12.11.1-linux-x64.tar.xz...
######################################################################## 100.0%
Computing checksum with sha256sum
Checksums matched!
Now using node v12.11.1 (npm v6.11.3)
Creating default alias: default -> node (-> v12.11.1)
2.檢視安裝效果,命令:
[linuxidc@localhost www.linuxidc.com]$ nvm use node
輸出如下:
Now using node v12.11.1 (npm v6.11.3)
穩定版(LTS)
1、安裝 LTS 版,命令:nvm install --lts
[linuxidc@localhost www.linuxidc.com]$ nvm install --lts
Installing latest LTS version.
Downloading and installing node v10.16.3...
Downloading https://nodejs.org/dist/v10.16.3/node-v10.16.3-linux-x64.tar.xz...
######################################################################## 100.0%
Computing checksum with sha256sum
Checksums matched!
Now using node v10.16.3 (npm v6.9.0)
2、檢視安裝效果,命令:
[linuxidc@localhost www.linuxidc.com]$ nvm list
輸出如下:
v10.16.3
-> v12.11.1
default -> node (-> v12.11.1)
node -> stable (-> v12.11.1) (default)
stable -> 12.11 (-> v12.11.1) (default)
iojs -> N/A (default)
unstable -> N/A (default)
lts/* -> lts/dubnium (-> v10.16.3)
lts/argon -> v4.9.1 (-> N/A)
lts/boron -> v6.17.1 (-> N/A)
lts/carbon -> v8.16.1 (-> N/A)
lts/dubnium -> v10.16.3
切換版本
從上面的安裝列表上已經可以看到,我們安裝了一個最新版,一個穩定版。分別是:v12.11.1 和 v10.16.3,我們要如何切換不同版本呢?
1.切換到 v12.11.1,命令:
[linuxidc@localhost www.linuxidc.com]$ nvm use v12.11.1
顯示:
Now using node v12.11.1 (npm v6.11.3)
2.切換到 v10.16.3,命令:
[linuxidc@localhost www.linuxidc.com]$ nvm use v10.16.3
顯示:
Now using node v10.16.3 (npm v6.9.0)
到這裡,我們基本會使用 nvm 了,想用什麼版本就可以自由切換。 但如果想玩得更爽一點,就要學習如下一些技巧。
使用別名
你肯定也想到,每次輸入v10.16.3 好麻煩。並且時間長了,不一定記得住後面是16.3,還是18.3的版本號。
1、設定 LTS 版別名,命令:
[linuxidc@localhost www.linuxidc.com]$ nvm alias 10 v10.16.3
顯示
10 -> v10.16.3
2、設定最新版別名,命令:
[linuxidc@localhost www.linuxidc.com]$ nvm alias 12 v12.11.1
顯示
12 -> v12.11.1
相關文章