我现在正在nodejs中进行培训,以及如何使用nodejs和expressjs作为框架开发MVC应用程序。我有一个TDD方法以及与TDD测试脚本一起编写的Model和View类。我有一个mongodb测试脚本,它失败并显示以下错误消息:
expressjs_multech_project mul$ jasmine-node ./tests
.......F
Failures:
1) MongoDB is there a server running?
Message:
Expected { } to be null.
Stacktrace:
Error: Expected { } to be null.
at /Users/.../expressjs_multech_project/tests/mongodb.spec.js:6:19
at /Users/.../expressjs_multech_project/node_modules/mongodb/lib/mongodb/mongo_client.js:334:20
at /Users/.../expressjs_multech_project/node_modules/mongodb/lib/mongodb/db.js:258:16
at null.<anonymous> (/Users/.../expressjs_multech_project/node_modules/mongodb/lib/mongodb/connection/server.js:621:7)
at emitThree (events.js:110:13)
at emit (events.js:188:7)
at null.<anonymous> (/Users/.../expressjs_multech_project/node_modules/mongodb/lib/mongodb/connection/connection_pool.js:139:15)
at emitTwo (events.js:100:13)
Finished in 0.182 seconds
8 tests, 18 assertions, 1 failure, 0 skipped
我使用Jasmine for node作为测试包,所有其他测试只传递模型和视图类。我不明白为什么我的mongodb TDD脚本在mongodb上失败,当我npm start
时,它没有开始返回app.js错误消息:
> node app.js
Sorry, the server (mongodb) is not running
我研究了堆栈跟踪,从我所看到的,没有与mongodb及其返回null的连接。我检查了mongodb以确保它在那里:
Johns-MacBook-Pro:expressjs_multech_project mul$ npm list mongodb
multechanalytics@0.0.1 /Users/.../expressjs_multech_project
└── mongodb@1.3.10
我已经尝试过各种补救措施但迄今为止没有任何补救措施。有关解决与服务器的连接问题的任何想法,所以我可以继续这个expressjs MVC培训项目?
我的config / index.js看起来像这样:
var config = {
local: {
mode: 'local',
port: 3000,
mongo: {
host: '127.0.0.1',
port: 27017
}
},
staging: {
mode: 'staging',
port: 4000,
mongo: {
host: '127.0.0.1',
port: 27017
}
},
production: {
mode: 'production',
port: 5000,
mongo: {
host: '127.0.0.1',
port: 27017
}
}
}
module.exports = function(mode) {
//export module configuration making it available to all files in folder
return config[mode || process.argv[2] || 'local'] || config.local;
以下是我在package.json
npm install mongodb --save
文件和npm install
以运行安装mongo时获得的输出
muls-MacBook-Pro:expressjs_multech_project jmulhall$ npm install mongodb --save
> kerberos@0.0.11 install /Users/jmulhall/Documents/Web_Development/Express-Nodejs/expressjs_multech_project/node_modules/kerberos
> (node-gyp rebuild 2> builderror.log) || (exit 0)
CXX(target) Release/obj.target/kerberos/lib/kerberos.o
> bson@0.2.22 install /Users/jmulhall/Documents/Web_Development/Express-Nodejs/expressjs_multech_project/node_modules/bson
> (node-gyp rebuild 2> builderror.log) || (exit 0)
CXX(target) Release/obj.target/bson/ext/bson.o
multechanalytics@0.0.1 /Users/jmulhall/Documents/Web_Development/Express-Nodejs/expressjs_multech_project
├─┬ less-middleware@0.1.12
│ └─┬ less@1.4.2
│ └─┬ request@2.69.0
│ └─┬ bl@1.0.3
│ └─┬ readable-stream@2.0.6
│ └── isarray@1.0.0
└─┬ mongodb@1.4.40
├─┬ bson@0.2.22
│ └── nan@1.8.4
├── kerberos@0.0.11
└─┬ readable-stream@2.0.6
└── isarray@1.0.0
...谢谢
答案 0 :(得分:1)
当组件返回exit 0
时,这看起来不像安装中的错误,这很好。
要清楚,您正在安装的软件包只是官方的mongodb驱动程序https://www.npmjs.com/package/mongodb - The official MongoDB driver for Node.js. Provides a high-level API on top of mongodb-core that is meant for end users.
您需要安装mongodb服务器才能完全安装https://docs.mongodb.org/manual/installation/