/deno_mongo2

Primary LanguageTypeScriptApache License 2.0Apache-2.0

Deno MongoDB Driver

import { MongoClient } from "./src/index.ts"

const client = new MongoClient("mongodb://localhost:27017/test")

await client.connect();
console.log('connected')

const bulk = client.db('test').collection('test').initializeUnorderedBulkOp();
bulk.find({}).updateOne({ $set: { a: 1 } });

const result = await bulk.execute();

console.log(result)