Skip to content

Releases: plexidev/quickmongo

v2.0

20 Sep 03:44
Compare
Choose a tag to compare

QuickMongo

Quick mongodb wrapper for beginners.

Documentation

QuickMongo

Updates

  • Fixed some bugs 🐛
  • Updated import method (Super Duper fast) 👑
  • Support for dot notations (#2)
  • Support for QuickMongo -> Quick.db export
  • Support for tables (actually models)
  • Other minor changes

Example

const { Database } = require("quickmongo");
const db = new Database("mongodb://localhost/quickmongo");

db.on("ready", () => {
    console.log("Database connected!");
    someFunction();
});

function someFunction() {
    db.set("foo", "bar");
    db.get("foo").then(console.log);
}

Links

QuickMongo v1.0.3

22 Jul 10:20
a559918
Compare
Choose a tag to compare

QuickMongo

Quick mongodb wrapper for beginners.

Documentation

QuickMongo

Updates

  • Fixed some bugs 🐛
  • Updated mongoose 👑
  • Updated MemoryStorage 🧠
  • Added database latency 📶

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

Initial Release

20 Jul 09:36
Compare
Choose a tag to compare

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