models.js 659 B

12345678910111213141516171819202122
  1. const MongoClient = require("mongodb").MongoClient;
  2. const ObjectID = require("mongodb").ObjectID;
  3. const mm = require('mm')
  4. module.exports = async (dbName, dsn="mongodb://localhost:27017/") => {
  5. if (!dbName)
  6. throw new ReferenceError(`db name does not provided`)
  7. const mongoClient = new MongoClient(dsn, { useNewUrlParser: true });
  8. const client = await mongoClient.connect()
  9. const db = client.db(dbName)
  10. const Savable = mm(db).Savable
  11. const sliceSavable = mm(db).sliceSavable
  12. return {
  13. Savable,
  14. slice(...params){
  15. return sliceSavable(...params)
  16. }
  17. }
  18. }