Mongo-Gyro is a light-weight mongo wrapper for nodejs. We found that the official mongo driver and alternatives were a little odd to use in practice (callback hell or unusual modeling). Mongo-Gyro takes the official mongo-native driver for nodejs and makes it unsuck.
It supports both callbacks and promises -- it will callback first and then return the promise. It casts and uncasts from strings to ObjectIds and back again automagically so you never have to worry about casting again. Our ultimate goal is to make Mongo fun to work with.
We've also incorporated into our fork of Bookshelf, making it easy to use either SQL or Mongo using the same ORM modeled on Backbone. (docs pending)
See MongoDB docs for "options" for different calls, and also syntax of objects for update, findAndModify and aggregate calls
npm install mongo-gyro
or add this to your package.json
"mongo-gyro": "*"
and npm install
var Mongo = require('mongo-gyro');
var mongo = new Mongo(); // defaults to localhost:27017
// or
var url = "mongodb://[username:password@]host1[:port1][,host2[:port2],...[,hostN[:portN]]][/[database][?options]]"; // see http://docs.mongodb.org/manual/reference/connection-string/
var mongo = new Mongo(url, [options]); // options here are connection options for mongodb
All calls take a callback as the last parameter OR return a promise. The promise library used is bluebird.
mongo.find("users", { "email": "[email protected]"}, function(err, object) {
if(err) {
console.log(err);
} else {
console.log(object);
}
});
mongo.find("users", { "email": "[email protected]"})
.then(function(object) {
console.log(object);
})
.caught(function(err) { // if there is an error
console.log(err);
});
mongo.find(collectionName, query, [options], [callback]);
Options can specify sort, limit, skip, fields, and other find options. Other options are specified in the MongoDB docs.
mongo.find("users", { "email": "[email protected]"});
mongo.find("users", { "email": "[email protected]"}, { "sort": { "email": -1 }, "limit": 1, "skip": 1, "fields": { "name": true, "email": true, "_id": true } });
Same as find, but you get the cursor back. Recommended for advanced users and only when needed.
mongo.findOne(collectionName, query, [options], [callback]);
mongo.findOne("users", { "email": "[email protected]"});
mongo.insert(collectionName, object, [options], [callback]);
mongo.insert("users", { "email": "[email protected]", "name": "Billy Testestest"});
Mongo's update doesn't actually bring back very much information. We've found that it's almost always preferable for us to use findAndModify, but in some cases update is adequate.
mongo.update(collectionName, query, object, [options], [callback]);
mongo.update("users", { "email": "[email protected]" }, { "$set": { "name": "Willy Testestest" } });
mongo.findAndModify(collectionName, query, object, [options], [callback]);
mongo.findAndModify("users", { "email": "[email protected]" }, { "$set": { "name": "Willy Testestest" } });
mongo.remove(collectionName, query, [options], [callback]);
mongo.remove("users", { "email": "[email protected]" });
mongo.aggregate(collectionName, pipeline, [options], [callback]);
mongo.aggregate("users",
{
"$match": {
"email": "[email protected]"
}
},
{
"$project": { "email": 1, "total": 1 }
},
{
"$group": {
_id: "$email",
revenue: {
"$sum": "$total"
}
}
});
-- This is a special helper for us. Specifying { "upsert": true } in the options will create it if it doesn't exist (recommended). Returns the next number in a sequence by incrementing the key "seq" in an object.
mongo.getNextSequence(collectionName, query, [options], [callback]);
mongo.getNextSequence("users_counter", { "name": "number_of_users" });
Danger -- you probably don't want to put this in your code unless you are a sadomasochist.
mongo.eraseCollection(collectionName, [callback]);
mongo.eraseCollection("users"); // and you definitely don't want this in your code unless its in a unit test
Doesn't return anything.
mongo.ensureIndex(collectionName, index, [options], [callback]);
mongo.ensureIndex("users", "name");
mongo.ensureIndex("users", "email", {"unique": true}); // for uniqueness
Removes all the indexes on a collection
mongo.dropIndexes(collectionName, [callback]);
mongo.dropIndexes("users");