Bạn đang thực sự đóng kết nối cơ sở dữ liệu của mình trước khi dữ liệu từ bộ sưu tập được trả về.
db.collection('users', function(err, collection) {
collection.find({}, function(err, cursor) {
cursor.each(function(err, item) {
console.log(item);
});
// our collection has returned, now we can close the database
db.close();
});
});