I am getting error Cannot find module \'bcrypt\' in nodejs application
I have tried to install it using npm install bcrypt but still gett
First delete bcrypt module from your node modules. Then try the below steps:
1) npm install node-gyp -g
npm install node-gyp -g
2) npm install bcrypt -g
npm install bcrypt -g
3) npm install bcrypt -save
npm install bcrypt -save
This will definitely resolve the issue.