In de 2.0-versie van het MongoDB-stuurprogramma voor node.js kunt u listCollections
gebruiken om een cursor te krijgen die de informatie van alle collecties bevat. U kunt dan toArray
. aanroepen op de cursor om de info op te halen.
db.listCollections().toArray(function(err, collInfos) {
// collInfos is an array of collection info objects that look like:
// { name: 'test', options: {} }
});