1.4.1 • Published 3 months ago

@zthun/dalmart-mongo v1.4.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

Dalmart Mongo

This package supplies the implementation for a dalmart layer that connects to a mongo database.

Installation

npm install @zthun/dalmart-mongo
yarn add @zthun/dalmart-mongo

Usage

import { IZDatabaseDocument, ZDatabaseOptionsBuilder } from '@zthun/dalmart-db';
import { ZDatabaseMongo } from '@zthun/dalmart-mongo';

const options = new ZDatabaseOptionsBuilder()
  .url('mongodb://my-database.url:8899')
  .database('blah-blahs')
  .timeout(45000)
  .build();
const database: IZDatabaseDocument = new ZDatabaseMongo(options);

// Do things with database.
1.4.1

3 months ago

1.3.0

4 months ago

1.2.0

5 months ago

1.1.1

9 months ago

1.1.0

9 months ago

1.0.3

9 months ago

1.0.2

9 months ago

1.0.1

9 months ago

0.1.0

9 months ago