Skip to content

chubbyts/chubbyts-mongodb

Repository files navigation

chubbyts-mongodb

CI Coverage Status Mutation testing badge npm-version

bugs code_smells coverage duplicated_lines_density ncloc sqale_rating alert_status reliability_rating security_rating sqale_index vulnerabilities

Description

Mongodb helper(s).

Requirements

Installation

Through NPM as @chubbyts/chubbyts-mongodb.

npm i @chubbyts/chubbyts-mongodb@^1.4.0

Usage

upsertIndexes

const mongoClient = await MongoClient.connect('mongodb://localhost');
await upsertIndexes(mongoClient, {
  pet: [
    {
      key: { id: 1 },
      name: 'pet.id',
      unique: true,
    },
    {
      key: { name: 1 },
      name: 'pet.name',
    },
  ]
});

Copyright

2024 Dominik Zogg

Releases

No releases published

Packages

No packages published