fabienjuif / quick-mongodb-node

Simplify mongo usage a little, not big deal.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

quick-mongodb-node

Simplify mongo usage a little, not big deal.

npm npm bundle size CircleCI Coveralls github

😈 A static variable is used in this package

🌏 Note that this package use MONGO_URL as an environment variable.

API and example

const database = require('quick-mongodb-node')

// - connect to the database
// - switch do `my-db` db
// - retrieve the mongodb `my-collection` collection
let collection = await database.getCollection('my-db/my-collection')

// - will NOT connect to the database (already done the line before)
// - switch do `my-db2` db
// - retrieve the mongodb `my-collection2` collection
let collection2 = await database.getCollection('my-db2/my-collection2')

// close the connection
await database.close()

About

Simplify mongo usage a little, not big deal.

License:MIT License


Languages

Language:JavaScript 100.0%