dumodb
v1.0.0-1
Published
My attempt at making a scalable database
Downloads
3
Readme
DumoDB
My attempt at a scalable database.
const Database = require('dumodb');
const hash = require('some-hashing-library');
const db = new Database('./my-database/');
db.store('users').set('a-user', {
password: hash('password123')
});