I am using a mongoDB server that is located on another machine. My question is how can I display all the documents that were found with console.log? Currently my main.js script is this:
// Connect to Mongo
MongoClient.connect('mongodb://10.254.17.115:27017/ExpressOrder', function(err, db) {
// Handle errors
assert.equal(null, err);
// Insert data
db.collection('ExpressOrder').insert({"SID":"24676637"});
// Count data
db.collection('ExpressOrder').find().count().then(function(numItems) {
console.log(numItems); // Use this to debug
callback(numItems);
})
// Display all data in db
var found = db.collection('ExpressOrder').find();
console.log(found); // Use this to debug
});
The data is properly inserted, and counts properly, but I just now need to know how do I display all the documents to the console with console.log.
printinstead ofconsole.logprintis undefined