1.1.1 • Published 1 year ago

@sqrtthree/mongoose-helper v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

mongoose-helper

Some helper functions for mongoose.

Install

npm install @sqrtthree/mongoose-helper

Usage

const { makeConnectionURI } = require('@sqrtthree/mongoose-helper')

// Or with esm
import { makeConnectionURI } from '@sqrtthree/mongoose-helper'

API

makeConnectionURI(options)

Format options to standard connection string of the MongoDB. Connection String URI Format

options.host

The host where the mongod instance is running.

options.port?

Optional. The port number where the mongod instance is running.

options.extras?

The host (and optional port number) where the mongos instance for a sharded cluster is running.

  • For a replica set, specify the hostname(s) of the mongod instance(s) as listed in the replica set configuration.
  • For a sharded cluster, specify the hostname(s) of the mongos instance(s).

options.database

The authentication database to use if the connection string includes username:password@ authentication credentials but the authSource option is unspecified.

options.username?

Optional. Authentication credentials.

options.password?

Optional. Authentication credentials.

options.options?

Optional. A query string that specifies connection specific options as <name>=<value> pairs.


sqrtthree.com  ·  GitHub @sqrthree  ·  Twitter @sqrtthree