Cannot find module 'bcrypt'

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

    The Solution is pretty basic, I've solved this Error / Bug with the following steps:

    Step 1: Uninstall the bcrypt package with this command :

    npm uninstall bcrypt

    Step 2: Then ReInstall it :

    npm install bcrypt

提交回复
热议问题