I am getting error Cannot find module 'bcrypt' in nodejs application
I have tried to install it using npm install bcrypt but still getting the issue
npm i bcrypt
I am getting error Cannot find module 'bcrypt' in nodejs application
I have tried to install it using npm install bcrypt but still getting the issue
npm i bcrypt

It is trying to build
bcryptfrom source, but you don't have the necessary tools installed for it to do so.Try installing the Visual C++ Build Tools first, which can be done using the following convenience npm package:
Once that is complete, run
npm install bcryptagain.More info here: https://www.npmjs.com/package/windows-build-tools