nodeJs启动的时候:Error: Cannot find module '../build/Release/bson'的解决办法

来源:互联网 发布:抓取网页数据工具 编辑:程序博客网 时间:2024/05/17 19:59
{ [Error: Cannot find module '../build/Release/bson'] code: 'MODULE_NOT_FOUND' }js-bson: Failed to load c++ bson extension, using pure JS version

头两行说的是没有发现bson模块。好办我们立马安装:

npm install bson

然后将E:\project\nodejs-demo\node_modules\connect-mongodb\node_modules\mongodb\node_modules\bson\ext\index.js中的bson = require('../build/Release/bson')改成bson = require('bson') ,重新运行。

阅读全文
0 0