查詢 Node 的安裝目錄
where node
升級 Node:在官網下載最新的安裝包,直接安裝即可。
https://nodejs.org/
升級 npm
npm install -g npm
使用 npm-check 檢查更新
npm install -g npm-check
npm-check
使用 npm-upgrade 更新
npm install -g npm-upgrade
npm-upgrade
更新全局包
npm update <name> -g
更新生產環境依賴包
npm update <name> --save
更新開發環境依賴包
npm update <name> --save-dev
參考資料
https://www.cnblogs.com/lanleiming/p/9040365.html
https://www.cnblogs.com/lxg0/p/8072890.html