Cannot find module 'bcrypt'

前端 未结 30 3278
轻奢々
轻奢々 2020-12-24 01:54

I am getting error Cannot find module \'bcrypt\' in nodejs application

I have tried to install it using npm install bcrypt but still gett

30条回答
  •  孤城傲影
    2020-12-24 02:44

    For me the issue resolved by below steps: Nothing above solved my issue, 1) rm -rf node_modules in your project directory 2) rm package-lock.json 3) just check you have your package.json file now 4) npm install

    Thats it, you will get bcrypt installed properly. Hope this helps.

提交回复
热议问题