Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1018 Bytes

README.md

File metadata and controls

34 lines (25 loc) · 1018 Bytes

@actvalue/mongo-client

npm version npm tot downloads npm license

Singleton client for MongoDB connection

Install

npm i @actvalue/mongo-client

Client Usage

The client is used to create and share MongoDB connection pool.

import { mongo } from '@actvalue/mongo-client';

// initialize you connection parameters and optionally set pool size
process.env.MONGO_URL = 'mongo+srv://<your-connection>/database';
process.env.MONGO_POOL_SIZE = "5"; // default value

// create connection pool if not existing already
const db = await mongo.getDb();
const users = db.collection("users");
await users.insertOne({ username: "test123", password: "test123" });

// some other time, some other place in code
// connection pool is reused
const db = await mongo.getDb();
const user = await users.findOne({ username: "test123" });