Cannot find module 'bcrypt'

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

    Be sure you are in a stable version of node too. If you are working with n, you only need to:

    sudo n stable
    

    And then again:

    npm install bcrypt --save
    

    And it worked for me.

提交回复
热议问题