module.exports = { init: function () { var _this = this; return new Promise(function (resolve, reject) { MongoClient.connect(config.mongodb, function (err, db) { if (err) { return reject(err); } _this.db = db; resolve(_this); }); }); } };