0.0.2 • Published 5 years ago

mongodb-single-client v0.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

mongodb-single-client

A singleton connection from MongoDB MongoClient for Node.js projects.

Install

npm i mongodb-single-client --save or yarn add mongodb-single-client

Usage example

const mongo = require('mongodb-single-client')

// starting the connection
mongo.connect({
  url: 'mongodb://localhost:27017',
  database: 'myapp'
}, (error) => {
  if (error) throw error
  startApp()
})

// using the connection
function startApp () {
  mongo('collectionName').insert({
    name: 'enzo',
    email: 'enzo@mail.com'
  })
}