ezpzdb

Easy and Redundant Database!

Usage no npm install needed!

<script type="module">
  import ezpzdb from 'https://cdn.skypack.dev/ezpzdb';
</script>

README

About

EZPZdb is an easy to use directory per entry, file per place and value database system which is for users looking to escape the JSON databases they're hooked on. This is not a permanent solution but is simply to give those people a slightly easier and redundant solution. Due to the file per place, in the rare chance of corruption only one single value could ever be corrupted.

EZPZdb is in it's beta stages so a lot of functionality is planned for the future.

Installing

Simply install the package with the command below. Once done it will install the EZPZdb package along with cryptojs which is used to encrypt values when password is given. It also uses a default node program called fs.

npm install ezpzdb

Example

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.

Links

Basic Documentation

More Examples

GitHub

NPM