# cd node_modules/mongodb
# bash ./install.sh
注意:驱动必须安装在项目所在的目录下,并不是安装一次所有项目都可以使用。
5. 编写测试代码mongo.js
复制代码 代码如下:
var http = require('http');
var mongodb = require('mongodb');
http.createServer(function(req, res){
res.writeHead(200, {'Content-Type': 'text/plain;charset=utf-8'});
mongodb.connect('mongodb://localhost:40202/log', function(err, conn){
conn.collection('log', function(err, coll){
coll.count({'action': 772}, function(err, count){
res.write('The total of action 772 is ' + count + ".\n");
res.end();
});
});
});
}).listen(3000, '127.0.0.1');
console.log('Server running at :3000/');
启动服务器:
复制代码 代码如下:
# node mongo.js
在浏览器访问:3000,可以看到如下输出:
现在可以说前面的安装过程是正确,开了个好头。
您可能感兴趣的文章: