Skip to main content
Module

x/mongo/mod.ts>Credential

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

Properties

optional
username: string

The username to authenticate with. This applies to all mechanisms but may be omitted when authenticating via MONGODB-X509.

optional
password: string

The password to authenticate with. This does not apply to all mechanisms.

optional
db: string

The database used to authenticate. This applies to all mechanisms and defaults to "admin" in SCRAM authentication mechanisms and "$external" for GSSAPI, MONGODB-X509 and PLAIN.

optional
mechanism: "SCRAM-SHA-1" | "SCRAM-SHA-256" | "MONGODB-X509"

Which authentication mechanism to use. If not provided, one will be negotiated with the server.