Cannot find module '../build/Release/bson'] code: 'MODULE_NOT_FOUND' } js-bson: Failed to load c++ bson extension, using pure JS version

前端 未结 30 2290
予麋鹿
予麋鹿 2020-11-28 02:19

I am getting the below error:

{ [Error: Cannot find module \'../build/Release/bson\'] code: \'MODULE_NOT_FOUND\' } 
  js-bson: Failed to load c++ bson extens         


        
30条回答
  •  無奈伤痛
    2020-11-28 02:48

    I had the same issue after upgrade version of ubuntu to 16.04. I solved in this way, hope it helps.

    $rm -rf node_modules
    $npm --save install bson
    $npm --save install mongoose
    $npm install
    

提交回复
热议问题