如何通过mongojs了解mongodb版本

时间:2013-06-05 05:51:00

标签: node.js mongodb mongojs

dburl = "mongodb://127.0.0.1:27017/demo";
db = require('mongojs').connect(dburl);
console.log(db.version);

我想知道使用mongojs的mongodb版本。

1 个答案:

答案 0 :(得分:3)

试试这个:

db.executeDbCommand({ buildInfo : 1 }, function(err, buildinfo) {
  console.log('V', buildinfo.documents[0].version);
});

编辑:使用command()缩短版本:

db.command({ buildInfo : 1 }, function(err, buildinfo) {
  console.log('V', buildinfo.version);
});

获取可以执行的命令列表:

db.command({ listCommands : 1 }, function(err, response) {
  console.log(response.commands);
});