인프런 커뮤니티 질문&답변
cannot found module
작성
·
664
답변 2
1
0
index.js 파일을 sever 폴더로 옮기신 후, package.json에서 아래와 같이 수정해주시면 됩니다.
"scripts": {
"start": "node server/index.js",
"dev": "nodemon server/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},





