fastmongo
v0.0.2
Published
✨ FastMongo is a easy to use mongodb wrapper. Like quick.db.
Downloads
2
Readme
🎉 FastMongo
FastMongo is a easy to use mongodb wrapper. Like quick.db.
Features
- Supports full JSON paths.
- Easy to use.
- Uses collections and documents.
Usage
const { createFastMongo } = require("fastmongo");
(async () => {
const mongo = await createFastMongo("mongodb://calhost/FASTMONGO");
const myDB = await mongo.Database();
myDB.set("nice.data", 1243);
myDB.get("nice.data", "defaultValue");
myDB.has("nice.data");
myDB.update("nice.data", (oldValue) => {
return [oldValue];
});
myDB.delete("nice.data");
})();
API
Coming Soon™️
TODO
Created By Kıraç Armağan Önal With ❤