1.0.1 • Published 2 years ago

@dariuski/microdb v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

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

1.0.1

2 years ago

1.0.0

2 years ago