load-mongoose
TypeScript icon, indicating that this package has built-in type declarations

3.2.0 • Public • Published

load-mongoose

The established connection will use the default options (for mongoose 5.9), these can be overridden with mongoOpts:

useCreateIndex: true,
useFindAndModify: false,
useNewUrlParser: true,
useUnifiedTopology: true

Loading with independent params:

import loadMongoose from 'load-mongoose';
import { Connection } from 'mongoose';

mongoLoader({
  mongoAdditionalParams: 'authSource=admin',
  mongoDatabase: 'myapp',
  mongoHost: 'localhost',
  mongoOpts: {
    useCreateIndex: false
  },
  mongoPassword: 'password',
  mongoPort: 27017,
  mongoUser: 'username',
})
.then((connection: Connection) =>{
  // do something safe in the knowledge there is a connection to the db
})
.catch((e: any) => {
  // Do something with the error
});

Loading with full connection uri:

import loadMongoose from 'load-mongoose';
import { Connection } from 'mongoose';

loadMongoose({
  mongoOpts: {
    useCreateIndex: false
  },
  mongoUri: 'someurlstring',
})
.then((connection: Connection) =>{
  // do something safe in the knowledge there is a connection to the db
})
.catch((e: any) => {
  // Do something with the error
});

You can also import calculateConnectionUri from this lib to calculate a connection uri based on config objects, usefull for testing

import { calculateConnectionUri } from 'load-mongoose';

const uri = calculateConnectionUri({
  mongoAdditionalParams: 'authSource=admin',
  mongoDatabase: 'myapp',
  mongoHost: 'localhost',
  mongoOpts: {
    useCreateIndex: false
  },
  mongoPassword: 'password',
  mongoPort: 27017,
  mongoUser: 'username',
});

See the index.d.ts file for type definition mongoLoader 1st argument.

/load-mongoose/

    Package Sidebar

    Install

    npm i load-mongoose

    Weekly Downloads

    14

    Version

    3.2.0

    License

    MIT

    Unpacked Size

    9.25 kB

    Total Files

    9

    Last publish

    Collaborators

    • carmichael.john