Created
December 27, 2011 02:24
-
-
Save edwardhotchkiss/1522555 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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 */ |
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); }); } });
is the new name now listCollections ?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes there is.
Mongodb in MONGO term. returns an array of strings:
In node script return:
Once more many thanks for your show. Take care.