नोड के साथ मोंगो को क्वेरी करने के लिए आपको निश्चित रूप से किसी प्रकार के नोड-मॉड्यूल की आवश्यकता होगी जैसे कि नोड-मोंगो-डीबी-नेटिव (https://github.com/mongodb/node-mongodb-native ) आप इसे केवल नोड कोर के साथ नहीं कर सकते...
यहां नोड-मोंगो-डीबी-नेटिव मॉड्यूल डॉक्स का उपयोग करके एक मोंगोडब को क्वेरी करने का एक उदाहरण दिया गया है...
var MongoClient = require('mongodb').MongoClient
, format = require('util').format;
MongoClient.connect('mongodb://127.0.0.1:27017/test', function(err, db) {
if(err) throw err;
var collection = db.collection('test_insert');
collection.insert({a:2}, function(err, docs) {
collection.count(function(err, count) {
console.log(format("count = %s", count));
});
// Locate all the entries using find
collection.find().toArray(function(err, results) {
console.dir(results);
// Let's close the db
db.close();
});
});
})