从 node.js 以编程方式执行 mongodb admin/console 命令的最佳方法是什么?具体来说,我想在执行一系列插入后使用 mongodump 导出一个 mongodb 集合。像这样的东西:
// requires and initializing stuff left out for brevity
db.open(function(err, db) {
if(!err) {
db.collection('test', function(err, collection) {
var docs = [{'hello':'doc1'}, {'hello':'doc2'}, {'hello':'doc3'}];
collection.insert(docs, {safe:true}, function(err, result) {
// Execute mongodump in this callback???
});
});
}
});