0.7.1 • Published 12 years ago

mdoq-mongodb v0.7.1

Weekly downloads
96
License
-
Repository
github
Last release
12 years ago

mdoq-mongodb

mongodb native middleware for mdoq.

Installation

npm install mdoq-mongodb

Using A Database

To specify a database, simply use() the mdoq-mongodb middleware and specify a url. Credentials, port (27015), and host (localhost) are optional.

var db = mdoq.use(require('mdoq-mongodb')).use('mongodb://localhost/test-db');

Using A Collection

Once your mdoq context is using a database, you can use() a specific collection.

var users = db.use('/users');

HTTP Style API

Since mdoq implements an http style api, mongodb methods insert(), find(), update(), and remove() are exposed as post(), get(), put(), and del().

Executing

Queries and other operations are only executed once a callback is provided. In order to find and modify an object you can chain operations.

users.get({age: {$gte: 21}).update({canDrink: true}, function(err, res) {
  console.log(res);
});

Iterators

All results will be returned unless a query is called with each(). This prevents buffering large sets of results, as only one result is pulled at a time.

var log = fs.createWriteStream('./log.json');

users.all().count().each(function(err, user, total) {
  log.write(JSON.stringify(user));
});

Querying

All mongodb query objects are supported by passing an object as an argument to get().

users.get({last_name: 'Smith'}, function(err, res) {
  console.log(res);
});

Inserting

Calling post() will insert a document into a collection.

users.post({name: 'Jimbo Jones'}, function(err, res) {
  console.log(res);
});

Updating

Updating a document requires a query and a modifer object containing modifier operations. You can also supply a regular object to replace the existing document.

users.get({name: 'Bob'}).put({$inc: {views: 1}}, function(err, res) {
  console.log(res);
});

Deleting

Delete a document by simply calling del() with a query to match all the documents to be deleted.

user.del({name: 'Bob'}, function(err, res) {
  console.log(res);
});

Modifiers

To limit(), sort(), count(), or otherwise modify the documents in an operation, see the mdoq api.

0.7.1

12 years ago

0.7.0

12 years ago

0.6.1

12 years ago

0.6.0

12 years ago

0.5.0

12 years ago

0.4.8

12 years ago

0.4.7

12 years ago

0.4.6

12 years ago

0.4.5

12 years ago

0.4.4

12 years ago

0.4.3

12 years ago

0.4.2

12 years ago

0.4.1

12 years ago

0.4.0

12 years ago

0.3.4

12 years ago

0.3.3

12 years ago

0.3.2

12 years ago

0.3.1

12 years ago

0.3.0

12 years ago

0.2.3

12 years ago

0.2.2

12 years ago

0.2.0

12 years ago

0.1.0

12 years ago