"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/
LIST
'Study > Node.js' 카테고리의 다른 글
NodeJs [Firebase] & Express CRUD 진행 해보기 (0) | 2021.12.05 |
---|---|
Node App 배포하는 방법, Nginx, Lets Encrypt 포함 SSL (0) | 2021.11.21 |
이더리움 웹앱 만드는 방법 (0) | 2021.11.12 |
PayPI를 사용하여 NodeJS로 수익창출 하는 방법 (0) | 2021.11.12 |
Node.js 서버에 파일 업로드 하기 (Multer) (0) | 2021.11.12 |