Nella versione 2.0 del driver MongoDB per node.js puoi usare listCollections
per ottenere un cursore che contiene le informazioni di tutte le raccolte. Puoi quindi chiamare toArray
sul cursore per recuperare le informazioni.
db.listCollections().toArray(function(err, collInfos) {
// collInfos is an array of collection info objects that look like:
// { name: 'test', options: {} }
});