mungu
v1.0.4
Published
Dead simple Mongo DB
Downloads
3
Readme
mungu
Dead simple Mongo DB
npm i --save mungu
const url = '***'
const dbName = '***'
const collectionName = '***'
async function test(){
const db = await mungu({
url,
dbName,
collectionName,
})
await db.set('hi',{hi:'deee'})
const d = await db.get('hi')
console.log(d)
await db.del('hi')
const d2 = await db.get('hi')
console.log(d2)
}
This lib is very simple. It never throws errors (just returns null
from get
if there is no document)