本文實(shí)例講述了Windows上node.js的多版本管理工具用法。分享給大家供大家參考,具體如下:
創(chuàng)新互聯(lián)主營托里網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,成都APP應(yīng)用開發(fā),托里h5重慶小程序開發(fā)搭建,托里網(wǎng)站營銷推廣歡迎托里等地區(qū)企業(yè)咨詢在Linux上我一直使用nvm來管理nodejs的不同版本,但是nvm沒有windows版本,今天發(fā)現(xiàn)在windows上可以使用另外一個版本管理工具nvm-windows來管理。
下載與安裝
下載地址:https://github.com/coreybutler/nvm-windows/releases
安裝前,這里有一點(diǎn)需要注意,如果以前安裝過node,需要先卸載,并且要把目錄清理干凈。下面是官方給的說明:
It comes with an installer (and uninstaller), because getting it should be easy. Please note, you need to uninstall any existing versions of node.js before installing NVM for Windows. Also delete any existing nodejs installation directories (e.g., "C:\Program Files\nodejs") that might remain. NVM's generated symlink will not overwrite an existing (even empty) installation directory.
You should also delete the existing npm install location (e.g. "C:\Users
\AppData\Roaming\npm") so that the nvm install location will be correctly used instead. After install, reinstalling global utilities (e.g. gulp) will have to be done for each installed version of node:
安裝的時候需要制定兩個目錄,一個是nvm的安裝目錄,一個是建立node軟連接的目錄。
nvm的安裝目錄(絕對路徑所有層級)中最好不要存在中文或者兩個單詞以上的路徑,如Progrom Files等,否則可能導(dǎo)致命令運(yùn)行出錯。
所有下載的node包在nvm安裝目錄下,只是在更改了node軟連接的目錄,并將node軟連接目錄增加到了環(huán)境變量中。原理還是很簡單的。
使用
查看當(dāng)前已經(jīng)安裝的nodejs版本
C:\Users\kongxx> nvm list No installations recognized.