hapi-mongoose-q

1.0.0 • Public • Published

Hapi-Mongoose-Q

Mongoose-Q connector for hapi

Description

This plugin provides the functionality to connect and disconnect from a mongoDB database using mongoose-q. It also ensures that the connection is available before calling server.start().

Usage

var Hapi = require('hapi');
var server = new Hapi.Server();
 
server.connection({ port: 3000 });
 
server.register({
  register: require('hapi-mongoose-q'),
  options: {
    mongoDbUri: 'mongodb://localhost'
  }
}, function(err) {
  if (err) {
    console.error(err);
    throw err;
  }
});
 
server.start();

Options

The following option must be passed when registering the plugin:

  • 'mongoDbUri' - a string representing the connection URI used to connect to a MongoDB database server.

Package Sidebar

Install

npm i hapi-mongoose-q

Weekly Downloads

2

Version

1.0.0

License

MIT

Last publish

Collaborators

  • olistic