go-mongo-db is licensed under the MIT License
How the donated funds are distributed
Kivach works on the Obyte network, and therefore you can track all donations.
<details> <summary>Options</summary> ```ts import { GoMongoDb } from 'go-mongo-db'; const connection_url = process.env.MONGO_CONNECTION_URL; // mongodb://username:password@hostname:port/ if (!connection_url?.length) throw new Error('MONGO_CONNECTION_URL is undefined or empty'); async function main() { const go_mongo_db = new GoMongoDb(connection_url, { autoReconnect: true, }); /* do cool stuff with `go_mongo_db` here */ await go_mongo_db.destroy(); // destroy the connection since we're finished with it } ``` </details> <details> <summary>Connection pool</summary> ```ts import { GoMongoDb } from 'go-mongo-db'; const connection_url = process.env.MONGO_CONNECTION_URL; // mongodb://username:password@hostname:port/ if (!connection_url?.length) throw new Error('MONGO_CONNECTION_URL is undefined or empty'); async function main() { const go_mongo_db = new GoMongoDb(connection_url); /* do cool stuff with `go_mongo_db` here */ /** * Don't destroy the connection so that it can be used * in a connection pool later on.