1.0.0-1 • Published 1 year ago
dumodb v1.0.0-1
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')
});