Socket
Socket
Sign inDemoInstall

@cnlabs/mongodb-cloud-connector

Package Overview
Dependencies
218
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @cnlabs/mongodb-cloud-connector

This is MongoDB connector in cloud or local environment(Cloud Foundry)


Version published
Weekly downloads
1
decreased by-50%
Maintainers
1
Install size
9.20 MB
Created
Weekly downloads
 

Readme

Source

mongodb-cloud-connector

Library to work with MongoDB in local and cloud environment

Environments

  • Local
  • Cloud Foundry
  • GitLab CI (env variable) #Install
yarn add @cnlabs/mongodb-cloud-connector
npm install --save @cnlabs/mongodb-cloud-connector

Use

For example use with express web server

       import { db } from '@cnlabs/mongodb-cloud-connector';

       app.get("/foo", async (req, res) => {
           const bars = await (await db()).collection('bar').find({}).toArray()
           res.send( { bars } )
       });
 
       db('default', {poolSize: 1}).then(()=> {
           app.listen(process.env.PORT)
       });

API

function db(name?: string, options?: MongoClientOptions): Promise<MongoClient>;

Connects to database depending on environment

Currently supported 3 possible environments:

  • default

    No special environment variables are set

    • default call: uses mongodb://localhost:27017/default url to connect
    • call with name: uses mongodb://localhost:27017/ url to connect
  • GitLab CI

    MONGODB_URL environment variables is set

    • default call: uses <MONGODB_URL>/default url to connect
    • call with name: uses <MONGODB_URL>/ url to connect
  • Cloud Foundry compatible

    VCAP_SERICES environment variables is set

    • default call: uses first bound service
    • call with name: resolve service by name
    • No bound services or no service with name causes throwing an Error
       @param name Name of database or Cloud Foundry bound service
       @param options Database connection options default is:
                {
                    poolSize: 10,
                    autoReconnect: true,
                    useNewUrlParser: true
                }
       @return MongoClient to communicate with mongo
            Mongo client is cached by name. It means that you call db() first time to get client connected
            any sequential calls will return the same instance unless clearCache is called
            Giving so wi need options only in first call
            We recommend to make fist call as soon as possible (for example: before express.listen() call to
            follow fail fast concept) and pass options to that call. any next call you can specify only name
    

Keywords

FAQs

Last updated on 21 Jun 2019

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