NestJSでうまくAppが生成できなかった場合の解決方法
NestJS使ってて、CLIのバージョンをアップしたんですよ。
それでApp作成しようとしたらエラーが出たので、解決方法をメモしておく。
$ nest --version
7.1.2
アプリ作る
$ nest new project-name
<なんか作ってる>
? Which package manager would you ❤️ to use? npm
▹▹▹▹▹ Installation in progress... ☕
Failed to execute command: npm install --silent
✖ Installation in progress... ☕
🙀 Packages installation failed, see above
Thanks for installing Nest 🙏
Please consider donating to our open collective
to help us maintain this package.
🍷 Donate: https://opencollective.com/nest
なぜかうまく作れない。
一旦
sudo npm cache clean --force
してからnewするとうまく動作した。