@chubbyts/chubbyts-mongodb
v2.1.1
Published
Mongodb helper(s).
Readme
chubbyts-mongodb
Description
Mongodb helper(s).
Requirements
- node: 20
- mongodb: ^7.1.1
Installation
Through NPM as @chubbyts/chubbyts-mongodb.
npm i @chubbyts/chubbyts-mongodb@^2.1.1Usage
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
2026 Dominik Zogg
