질문&답변 #2강 npm install 맨처음 npm install 하시기 전에, 루트 디렉토리의 package-lock.json 을 삭제해주세요. 그 다음 package.json 에서 "bcrypt": "^3.0.6", 를 지워주세요. 그 다음 루트 디렉토리에서 터미널을 열어 npm install 을 실행합니다. 설치가 완료되면, 터미널에서 npm install bcryptjs --save 를 실행합니다. 해결되셨을까요? 2022-11-09T20:32:28.337Z 좋아요수 0 댓글수 4 조회수 786
질문&답변 cannot found module index.js 파일을 sever 폴더로 옮기신 후, package.json에서 아래와 같이 수정해주시면 됩니다. "scripts" : { "start" : "node server/index.js" , "dev" : "nodemon server/index.js" , "test" : "echo \" Error: no test specified \" && exit 1" }, 2022-07-14T08:45:14.887Z 좋아요수 0 댓글수 2 조회수 690