संग्रह से डेटा वापस आने से पहले आप वास्तव में अपना डेटाबेस कनेक्शन बंद कर रहे हैं।
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();
});
});