@webtypen/webframez-dbdriver-mongodb
v0.0.5
Published
Adds mongodb support/driver to an webtypen-webframez application
Downloads
2
Readme
webframez MongoDB Driver
Registration:
app.ts:
import { WebApplication } from "@webtypen/webframez-core";
import { DBDrivers } from "@webtypen/webframez-core/src/Database/DBDriver";
import { MongoDBDriver } from "@webtypen/webframez-dbdriver-mongodb";
// ...
DBDrivers.register("mongodb", MongoDBDriver);
// ...
const app = new WebApplication();
app.boot();