mongo-getdb
Version:
A very opinionated way to connect with the mongodb driver.
18 lines (14 loc) • 340 B
JavaScript
module.exports = function (getDb) {
let hapi_plugin = {};
hapi_plugin.register = function (plugin, options, next) {
plugin.expose('getDb', getDb);
getDb(function (db) {
plugin.expose('db', db);
next();
});
};
hapi_plugin.register.attributes = {
pkg: require('./package')
};
return hapi_plugin;
};