Cannot find module 'bcrypt'

前端 未结 30 3259
轻奢々
轻奢々 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:52

    Using npm install bcrypt command can't resolve the issue for me.

    I tried the commands below and my issue resolved.

    npm install node-gyp -g
    npm install bcrypt -g
    
    npm install bcrypt --save
    

提交回复
热议问题