Skip to main content
Module

x/aloedb/mod.ts

Light, Embeddable, NoSQL database for Deno 🦕
Latest
import * as aloedb from "https://deno.land/x/aloedb@0.9.0/mod.ts";

Classes

AloeDB 🌿

Light, Embeddable, NoSQL database for Deno

Functions

Logical AND operator. Selects documents where the value of a field equals to all specified values.

Matches if number is between specified range values.

Matches if number is between or equal to the specified range values.

Matches if all the values in the array match in the given queries.

Matches if field exists.

Matches if array includes specified value.

Matches if array length equal to specified length.

Selects documents where the value of a field less than specified number.

Selects documents where the value of a field less than or equal to the specified number.

Selects documents where the value of a field more than specified number.

Selects documents where the value of a field more than or equal to the specified number.

Logical NOT operator. Selects documents where the value of a field not equal to specified value.

Logical OR operator. Selects documents where the value of a field equals at least one specified value.

Matches if at least one value in the array matches the given queries.

Matches if value type equal to specified type.

Interfaces

Database initialization config

Type Aliases

Checking the object for suitability for storage.

Any document-like object.

Array of document values.

Supported primitives.

Supported documents values.

Documents selection criteria.

Manual вocuments selection function.

Possible search query values.

The modifications to apply.

Manual modifications applying.

Possible update values.

Schema validation. Throw error, if document unsuitable.