1.5.1 • Published 10 months ago
@chubbyts/chubbyts-mongodb v1.5.1
chubbyts-mongodb
Description
Mongodb helper(s).
Requirements
- node: 18
- mongodb: ^6.12.0
Installation
Through NPM as @chubbyts/chubbyts-mongodb.
npm i @chubbyts/chubbyts-mongodb@^1.5.1
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
2025 Dominik Zogg