Skip to content

Instantly share code, notes, and snippets.

@edwardhotchkiss
Created December 27, 2011 02:24
Show Gist options
  • Save edwardhotchkiss/1522555 to your computer and use it in GitHub Desktop.
Save edwardhotchkiss/1522555 to your computer and use it in GitHub Desktop.
/**
* Uses MongooseJS to Connect to MongoDB
* .Maps out all collections within
*/
var mongoose = require('mongoose')
, MONGO_DB = 'mongodb://localhost/test';
mongoose.connect(MONGO_DB);
mongoose.connection.on('open', function(){
mongoose.connection.db.collectionNames(function(error, collections) {
if (error) {
throw new Error(error);
} else {
collections.map(function(collection) {
console.log('found collection %s', collection.name);
});
}
});
});
mongoose.connection.on('error', function(error){
throw new Error(error);
});
/* EOF */
@shmuliko
Copy link

shmuliko commented Nov 3, 2016

mongoose.connection.on('open', function (ref) { mongoose.connection.db.collections(function(error, collections) { if (error) { throw new Error(error); } else { collections.map(function(collection) { console.log('found collection %s', collection.s.name); }); } });

@pravinvram
Copy link

is the new name now listCollections ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment