0.0.6-a • Published 7 years ago
ezpzdb v0.0.6-a
EZPZdb is in it's beta stages so a lot of functionality is planned for the future.
npm install ezpzdb
const db = require('ezpzdb')('./database')
db.create("entry1", {
place1: "value1",
place2: "value2"
})
db.find('entry1','place1')
//Returns "value1"
//More examples and all functions found on official docs.