Skip to main content
Module

x/mongo/mod.ts>Database

MongoDB driver for Deno
Extremely Popular
Go to Latest
class Database
import { Database } from "https://deno.land/x/mongo@v0.31.0/mod.ts";

Constructors

new
Database(cluster: Cluster, name: string)

Methods

collection<T = Document>(name: string): Collection<T>
createCollection<T>(name: string, options?: CreateCollectionOptions): Promise<Collection<T>>

createCollection executes a create command to create a new collection with the specified name and options.

https://www.mongodb.com/docs/manual/reference/command/create/#mongodb-dbcommand-dbcmd.create

createUser(
username: string,
password: string,
)
dropDatabase(writeConcern?: WriteConcern)
dropUser(username: string, options?: { writeConcern?: Document; comment?: Document; })
listCollectionNames(options?: { filter?: Document; authorizedCollections?: boolean; comment?: Document; }): Promise<string[]>
listCollections(options?: { filter?: Document; nameOnly?: boolean; authorizedCollections?: boolean; comment?: Document; }): CommandCursor<ListCollectionsResult>