1db.collectionNames(collName, function(err, names) {
2 console.log('Exists: ', names.length > 0);
3});
4
5// MongoDB 2.x:
6db.listCollections({name: collName})
7 .next(function(err, collinfo) {
8 if (collinfo) {
9 // The collection exists
10 }
11 });