2.0.1 • Published 10 years ago

hapi-mongodb2 v2.0.1

Weekly downloads
1
License
ISC
Repository
github
Last release
10 years ago

hapi-mongodb2

Hapi (^8.0) plugin for the MongoDB native driver 2.0.

Install

npm install --save mongodb@2 hapi-mongodb2

Register plugin

var Hapi = require('hapi');
var server = new Hapi.Server();

server.register({
  register: require('hapi-mongodb2')
  opts: { url: 'mongodb://user:password@domain.tld:port/database' }
}, function (err) {
  if (err) console.error(err);
});

Use plugin

The object returned by MongoClient.connect is exposed on server.plugins['hapi-mongodb2'].client and binded to the context on routes and extensions as this.mongo.

If by any chance you need to use the mongodb library itself you can get it from server.plugins['hapi-mongodb2'].library.

server.route({
  method: 'GET',
  path: '/users',
  handler: function (request, reply) {
    var mongo = request.server.plugins['hapi-mongodb2'].client;
    mongo.collection('users').find({}).toArray(function (err, users) {
      reply(users);
    });
  }
}, {
  method: 'GET',
  path: '/databases',
  handler: function (request, reply) {
    var mongo = this.mongo;
    mongo.admin().listDatabases(function (err, dbs) {
      reply(dbs);
    });
  }
});

License

Licensed under the terms of the ISC. A copy of the license can be found in the file LICENSE.

© 2015, Jose-Luis Rivas <me@ghostbar.co>

2.0.1

10 years ago

2.0.0

10 years ago

1.0.0

11 years ago

0.2.0

11 years ago

0.1.0

11 years ago