A wrapper that encapsulates MongoDB Node.js driver, mongo-xcollection and other useful features.
const db = await MongoDb.connect('mongodb://yourconnectionstring', 'dbname');
const dbrother = db.siblingDb('dbname2');
const Users = db.xcollection('users');
const users = Users.find({});
db.close();