1.0.4 • Published 3 years ago

mongo-driverify v1.0.4

Weekly downloads
3
License
MIT
Repository
github
Last release
3 years ago

mongo-driver

Simple basic driver for node and mongo db combination

Build Status Node.js CI Coverage Status

Installation:

npm install mongo-driverify --save

Setup your Mongo Driver

const MongoDriver = require('mongo-driverify');

MongoDriver.MongoDBManager.configure({
    connectionString: 'mongodb+srv://XXXX:XXXX@XXXX-XXXX.mongodb.net/XXXX',
    hasCert: false,
    certPath: '',
    dbName: 'XXXX'
});

Usage:

Get driver instance

const driver = MongoDriver.MongoDBManager.getInstance();

Insert documents

await driver.insertDocProm({ 'id': 1, 'string': 'abc', 'number': 10 }, collectionName);

Fetch documents

await driver.getDocumentsByProm(collectionName, { 'id': 1 });

Complete Documentation

Click here to checkout complete documentation or View Documentation page here

Features:

  • Supports Insert, Fetch, Delete, Update document etc functionality.
  • Simple light weight driver for your mongodb.
  • Only 1 dependency.