wastefuldb

1.6.3 • Public • Published

WastefulDB

A little custom made, document-oriented database project made with JavaScript and JSON for convenience.

Quick Setup

const Wasteful = require('wastefuldb');
const db = new Wasteful();

Recommendations:

  • NodeJS v18.14.2 or higher
  • NPM v9.5.0 or higher

Table of Content

Constructor

new Wasteful({feedback: false, log: false, path: `${__dirname}/info/`, serial: false, kill: false});
  • feedback - Sends a confirmation via console when a function is executed successfully. (default: false)
  • log - Catalogs every time a function is executed or an error occurs, including the timestamp at which the event occurred. (default: false)
  • path - Provide a custom path where you wish JSON files to be written/read. (default: ./wastefuldb/data/)
  • serial - Automatically assigns filenames/identifiers based on the size of the set path/directory. (default: false)
  • kill - When set to true, the process will be kill when an error occurs in a try/catch statement. (defualt: false)

Specifying Directories

Every function is capable of interacting with specific directories outside the "path" constructor option when specified within the {dir} option.

db.find({id: "1234"}, {dir: `${__dirname}/patrons/`});

db.insert({id: "5545", name: "Sherry", pass: "BB822", active: false}, {dir: `${__dirname}/accounts/`});
  • dir - A directory's specific address to search, insert, and update in.

Functions

.insert()

Insert a file with as many variables as you wish. Always include an "id" variable if serial is set to false as that is what is use to read the JSON document in most cases.

db.insert({id: "1234", name: "seth", pass: "xyz"});
  • id - The name of the file and what will be used in the .find() function

.insertBulk([Array of Objects])

Insert a file with multiple Objects within an Array.

db.insertBulk( [{id: "5545"}, {first: "Sully", last: "V."}, {password: "password"}] );

.find(id)

Provides the information of the specified file with the matching identifier.

let info = db.find({id: "1234"});
console.log(info);
  • id - The identifier of the file to find and display the information of.

.findMore([data])

Retrieves and parses multiple documents and returns them in an array. If a document isn't found, -1 will take its place.

db.findMore(["1234", "2", "5678"], {dir: `${__dirname}/data/`});
  • data - An array of document identifiers to search for.

.get(id, dir?, (callback))

Unlike db.find, this function will open each JSON document in the given directory in order to locate the identifier within the document rather than locating the document name.

db.get("1234", {dir: "./data/"}, (result) => { console.log(result); });

db.get({id: 5}, (result) => { console.log(result); });
  • id - The internal identifier of a file.
  • dir? - A specific directory to search in.
  • (callback) - The callback argument which will return the data contained within the given document, or returns -1 if the document isn't found.

.append({id, key, value, position?})

Append a new key and value to a document's data. If the document's data is an array of objects, provide a 'position' argument to pick which object to append to.

db.append({id: "2", key: "food", value: "leaves"});
db.append({id: "5", key: "person", value: "true", position: 0});
  • id - The identifier of the file to append to.
  • key - The name of the new key to append to an object.
  • value - The content of the given key.
  • position - Which object in an array of objects should the new key be appended to? (Defaults to the first object.)

.update({id, key, change, math?})

Searches the given or specified directory for the given ID and updates the given "key" with your "change". Set math to true for simple math. Set the change to "undefined" to delete the specified key. A key which doesn't exist will be added automatically. Not recommended when serialization is enabled.

db.update({id: "1234", key: "id", change: "4321", math: false});
  • id - The name/id of the file to update
  • key - What key of the file you want to update
  • change - What change you want to make to it
  • math? - Does the change require (simple) math?

.update() (with child value)

Declaring a "child" key will update an object within another object aka nested objects. Everything else is the same.

db.update({id: "5", key: "name", child: "last", change: "A."});

.mupdate(id, [Array of Objects])

Update multiple objects within a single document. A good alternative to .update() for several changes in a single document.

db.mupdate("5", [ {key: "balance", change: -34, math: true}, {key: "name", child: "middle", change: "A."} ])
  • id - The identifier of the file to update
  • "Array of Objects" - An array containing several, properly formatted objects to update the specified document.

.collect({id?, key?, value?})

Reads, parses, then pushes information from each JSON file into one collection. Provide an id or key & value to filter results.

let data = db.collect();
data.forEach(info => {
  if(info.active == true) {
    console.log(info);
  } else {
    return;
  }
})

.replicate(id, {to?, from?, force?})

Create a copy of a specified document from a given directory and place it within the given destination directory. Only one file can exist in a directory at a time.

db.replicate("1234", {to: __dirname, from: `${__dirname}/data/`);
db.replicate("1234", {force: true});
  • id - The identifier of the file which is going to be replicated.
  • to - What directory to place the replicated file. (default: constructor.path)
  • from - Which directory to find the file which is being replicated. (default: constructor.path)
  • force - Forces the function to replicate the file within the same directory. The file will have a suffix of "_rep". (default: false)

.set(id, {data}, {dir});

Overwrite a document completely, replacing the document data with the new data provided. The previous data is temporarily stored in a cache.

db.set("1234", {name: "Seth R. Richardson", balance: 1000, insured: true}, {dir: __dirname});
  • id - The identifier of the document to be overwritten.
  • data - The new data to be written in the document.
  • dir - A directory which contains the document to be updated.

.undo();

Undo the most recent update to a document. The cache holding the most recent change will be cleared if your program session ends.

db.undo();

Update Notes

  • The error handler for each function has been relocated and converted into its own function.
    • Reformatted how errors are logged into the console so it's a little more informal.
  • Fixed "standard" still being a part of the README despite being removed.
v1.6.1

Package Sidebar

Install

npm i wastefuldb

Weekly Downloads

0

Version

1.6.3

License

ISC

Unpacked Size

58.6 kB

Total Files

12

Last publish

Collaborators

  • seth_