npm
install
-g n
n stable
n v7.6.0
npm -v #顯示版本,檢查npm 是否正確安裝。
npm install express #安裝express模組
npm install -g express #全域性安裝express模組
npm list #列出已安裝模組
npm show express #顯示模組詳情
npm update #公升級當前目錄下的專案的所有模組
npm update express #公升級當前目錄下的專案的指定模組
npm update -g express #公升級全域性安裝的express模組
npm uninstall express #刪除指定的模組
Linux CentOs手動公升級node
1 檢視是否安裝了node 檢視node版本 node v 檢視node路徑 whereis node 2 查詢對應的nodejs包,具體參考 本人使用版本 node v10.16.3 linux x64.tar.xz 3 切換到安裝node的位置,此處為 usr local lib nodejs,...
node 安裝與更新
參考 1.使用 brew 或者 n 管理 node.js on mac brew install non linux,n install allows installation directly from github for instance 參考 curl l bash n successful...
mac更新node版本
1,清除node.js的cache sudo npm cache clean f 2,安裝 n 工具,這個工具是專門用來管理node.js版本的,別懷疑這個工具的名字,是他是他就是他,他的名字就是 n sudo npm install g n 3,安裝最新版本的node.js sudo n stab...