### Initialize and Use QuickMongo Database Source: https://quickmongo.js.org/ This snippet demonstrates how to install QuickMongo, initialize a database connection, and perform basic set and get operations. Ensure MongoDB is running and accessible at the specified URI. ```javascript const { Database } = require("quickmongo"); const db = new Database("mongodb://localhost/quickmongo"); db.on("ready", () => { console.log("Database connected!"); }); db.set("foo", "bar"); db.get("foo").then(console.log); ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.