1. 程式人生 > >npm 提示 Cannot find module '@angular/xxx'

npm 提示 Cannot find module '@angular/xxx'

從angular官網下載了一個案例程式碼,準備在本地執行,

提示:

Cannot find module '@angular/compiler-cli'

嘗試了安裝這個模組的指令,重新執行,又提示找不到其他的模組。

因此考慮是否有一次性解決的辦法。網上找了一圈,stackoverflow上的:

https://stackoverflow.com/questions/45902644/the-angular-compiler-cli-package-was-not-properly-installed-error-cannot-fi

第二個回答:

刪除專案下在node_modules資料夾,然後重新打命令:

npm install

相當於先把modules庫清空,重新獲取。

問題解決!