@chubbyts/chubbyts-mongodb
v1.4.0
Published
Mongodb helper(s).
Downloads
487
Readme
chubbyts-mongodb
Description
Mongodb helper(s).
Requirements
- node: 16
- mongodb: ^6.0.0
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
2023 Dominik Zogg