mongo-start

3.0.0 • Public • Published

Build Status Mongo-Start

A simple mongojs wrapper to return a collection so you don't need to write the same thing over and over.

To configure the connection you can create an environment variable called "mongo-connection". However since mongo-start uses qconf you can store the setting anywhere that qconf lets you.

const users = require('mongo-start')('users'); //mongojs collection
users.find({...}, (err, collection) => {
  //do stuff
});
const db = require('mongo-start')(); //mongojs db object
db.getCollectionNames((err, collectionNames) => {
  //collections in the db
});

/mongo-start/

    Package Sidebar

    Install

    npm i mongo-start

    Weekly Downloads

    12

    Version

    3.0.0

    License

    MIT

    Unpacked Size

    3.27 kB

    Total Files

    6

    Last publish

    Collaborators

    • kev_nz