"No such file or directory: 'dev'" 앱 충돌이 날 때 아래와 같은 문구를 package.json에 추가해준다. Solution Node.js v12 or later (...) "scripts": { "start": "node src", "start:dev": "nodemon --watch --experimental-modules src/ src/index.js" }, "type": "module" } --experimental-modules 를 추가해주면 에러가 해결됩니다! 짠! 출처 :https://kingso.netlify.app/posts/error-nodemon-appcrashed/