VUE載入相關依賴包(安裝 node_modules)

小海豹D發表於2020-11-12

有時候克隆程式碼後,沒有node_modules,或者自己不小心刪除了node_modules後,執行的時候彙報以下錯誤:

npm WARN Local package.json exists, but node_modules missing, did you mean to install?
npm ERR! A complete log of this run can be found in: xxxxxx

直接使用下面命令安裝node_modules相關依賴包

npm install

安裝完成後就可以啟動了

相關文章