|
@@ -1,16 +1,10 @@
|
|
|
const MongoClient = require("mongodb").MongoClient;
|
|
|
const ObjectID = require("mongodb").ObjectID;
|
|
|
const mm = require('mm')
|
|
|
+const {connect} = require('mm')
|
|
|
|
|
|
-module.exports = async (dbName, dsn="mongodb://localhost:27017/") => {
|
|
|
- if (!dbName)
|
|
|
- throw new ReferenceError(`db name does not provided`)
|
|
|
-
|
|
|
- const mongoClient = new MongoClient(dsn, { useNewUrlParser: true });
|
|
|
- const client = await mongoClient.connect()
|
|
|
- const db = client.db(dbName)
|
|
|
- const Savable = mm(db).Savable
|
|
|
- const slice = mm(db).sliceSavable
|
|
|
+module.exports = async (dbName='cb') => {
|
|
|
+ const {Savable, slice} = await connect(dbName)
|
|
|
|
|
|
async function getModels(id){
|
|
|
const SlicedSavable = slice([id, 'user'])
|