Skip to content

Initial Release

Choose a tag to compare

@twlite twlite released this 20 Jul 09:36

Initial Release of quickmongo.

QuickMongo

Quick mongodb wrapper for beginners.

Documentation

QuickMongo

Example

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);

Links