I am getting error Cannot find module \'bcrypt\' in nodejs application
I have tried to install it using npm install bcrypt but still gett
Be sure you are in a stable version of node too. If you are working with n, you only need to:
n
sudo n stable
And then again:
npm install bcrypt --save
And it worked for me.