inflearn logo
Course

Course

Instructor

ai00077743's Posts

ai00077743 ai00077743

@ai00077743

Reviews Written
1
Average Rating
5.0

Posts 2

Q&A

#2강 npm install

맨처음 npm install 하시기 전에, 루트 디렉토리의 package-lock.json 을 삭제해주세요. 그 다음 package.json 에서 "bcrypt": "^3.0.6", 를 지워주세요. 그 다음 루트 디렉토리에서 터미널을 열어 npm install 을 실행합니다. 설치가 완료되면, 터미널에서 npm install bcryptjs --save 를 실행합니다. 해결되셨을까요?

Likes
0
Comments
4
Viewcount
810

Q&A

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" },

Likes
0
Comments
2
Viewcount
696