Socket
Socket
Sign inDemoInstall

mongodb-build-info

Package Overview
Dependencies
7
Maintainers
9
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

mongodb-build-info

Extract information from mongodb's buildInfo


Version published
Maintainers
9
Weekly downloads
46,892
increased by37.06%

Weekly downloads

Readme

Source

mongodb-build-info

Helpful functions to figure out if a connection is on Atlas, Atlas Data Lake, Enterpise, or DocumentDB/CosmosDB.

Usage

const getBuildInfo = require('mongodb-build-info')
const MongoClient = require('mongodb').MongoClient

MongoClient.connect('localhost:27017', function (err, client) {
  const adminDB = client.db('test').admin()
  let buildInfo;

  adminDB.command({ buildInfo: 1 }, {}, parseBuildInfo)
  adminDB.command({ getCmdLineOpts: 1 }, {}, parseCmdLineOpts)

  function parseBuildInfo (err, res) {
    if (err) console.log('Command failed, ', err)
    buildInfo = res

    const { isDataLake, dlVersion } = getBuildInfo.getDataLake(buildInfo)
    const isEnterprise = getBuildInfo.isEnterprise(buildInfo)
  }

  function parseCmdLineOpts (err, res) {
    if (err) console.log('Command failed', err.message)

    const { isGenuine, serverName } = getGenuineMongoDB(buildInfo, res)
  }
})

API

getDataLake(buildInfo)

Returns an object:

isDataLake: boolean. dlVersion: version of dataLake, a string.

isEnterprise(buildInfo)

Returns a boolean.

isAtlas(uri)

Returns a boolean.

isLocalAtlas(count: (db: string, coll: string, query: Document) => Promise<number>)

Returns a Promise<boolean>.

isAtlasStream(uri)

Returns a boolean.

isLocalhost(uri)

Returns a boolean.

isDigitalOcean(uri)

Returns a boolean.

getGenuineMongoDB(buildInfo, cmdLineOpts)

Returns an object:

isGenuine: boolean. serverName: name of the server (mongoDB, cosmosDB, or documentDB).

getBuildEnv(buildInfo)

Returns an object:

serverOs: build's OS version (macOS, linux, windows etc.). serverArch: build's architecture (e.g. x86_64).

Installation

npm install -S mongodb-build-info

License

Apache-2.0

Keywords

FAQs

Last updated on 17 Nov 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc