dburl = "mongodb://127.0.0.1:27017/demo";
db = require('mongojs').connect(dburl);
console.log(db.version);
mongojsを使ってmongodbのバージョンを知りたいです。
これを試して:
db.executeDbCommand({ buildInfo : 1 }, function(err, buildinfo) {
console.log('V', buildinfo.documents[0].version);
});
EDIT:を使用した短いバージョンcommand()
:
db.command({ buildInfo : 1 }, function(err, buildinfo) {
console.log('V', buildinfo.version);
});
実行できるコマンドのリストを取得するには:
db.command({ listCommands : 1 }, function(err, response) {
console.log(response.commands);
});