@trichter/git-db
v0.0.6-b
Published
a flat-file database based on git
Downloads
1
Readme
git-db
A flat-file database based on git
State
very early version
Example
import GitDB, { YAMLFile } from 'git-db'
const db = new GitDB('./repo')
const master = await db.checkoutBranch('master')
await master.loadData()
const files = master.get((file) => file instanceof YAMLFile)