1.0.0 • Published 9 years ago

hapi-mongoose-q v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

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.