1.0.1 • Published 2 years ago
@dariuski/microdb v1.0.1
Micro Database engine
Plain file storage embedded database engine with MongoDB API
Features:
- dropin replacement for MongoDB
- non blocking plain file store
- no dependencies
Usage example:
const db = new MicroDB('microdb://tmp')
const col = await db.collection('col')
await col.insertOne({name: 'test', score: 100})
await col.updateOne({score: {$gt: 50}}, {comment: 'Best score'})
console.log(await col.find({}).toArray())
await col.deleteOne({name: 'test'})License
MIT