[nodemon] app crashed - waiting for file changes before starting... というエラーに遭遇した時の対処法
Githubのissuesをのぞいてみる
見たことないくらいのコメント数が付いていました。
https://github.com/linnovate/mean/issues/1066
いろいろな意見があるが問題としては
- nodemonがない(インストールしていない)
- インストールしたnode_modulesに問題がある
上記を踏まえ行った対応
npm install -g nodemon
でnodemonをインストール- node_modulesを一旦削除して
npm i
でインストールしなおす