co-mongodb

0.1.0 • Public • Published

co-mongodb

Build Status

Manipulation library to use the mongodb native driver with generator based flow control libraries such as co.

Instalation

$ npm install co-mongodb

Example

var comongo = require('co-mongodb');
 
co(function *() {
  // db is just a regular Db instance from the native driver.
  db = yield comongo.client.connect('mongodb://localhost:27017/test');
  
  // The same goes for collection.
  var collection = yield comongo.db.collection(db, 'testCollection');
  
  var result = yield comongo.db.addUser(db, 'user', 'pass');
  var user = result[0];
  yield comongo.db.removeUser(db, 'user');
  
  yield comongo.db.close(db);
})();

Supported functions

More to come soon...

/co-mongodb/

    Package Sidebar

    Install

    npm i co-mongodb

    Weekly Downloads

    18

    Version

    0.1.0

    License

    MIT

    Last publish

    Collaborators

    • arnaud