Cannot find module 'bcrypt'

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

    The problem could be because there is no this essential

    sudo apt-get install -y build-essential python
    

    Then agregate bcrypt with if you're using npm:

    npm install bcrypt
    npm rebuild
    

    or if you're using yarn:

    yarn add bcrypt
    yarn install
    yarn build
    

提交回复
热议问题