2.0.2 • Published 6 months ago

jsonbases v2.0.2

Weekly downloads
-
License
Apache License 2....
Repository
-
Last release
6 months ago

Jsonbases - local Json database or NPM package to manage JSON-based dataset in Node.js. It provides functions to create, read, update, and delete records in a JSON file, following a specified data format.

Installation

npm install jsonbases

Get started

import jsonbases from 'jsonbases';

// Define user data format giving types, optionally specify required and unique values.
const format = {
    types: {
        name: 'string',
        age: 'number',
    },
    requireds: ['name', 'age'],
    uniques: ['name'],
};

// Create user table named "users".
const users = jsonbases('users', format);

//Optionally specify the path, by default it's './jsonbases'
const usersTemp = jsonbases('users-temp', format, './path/to/your/database');
  • createItem() Creates a new item with properties initialized to null based on the defined data format.
// Create a new item with default values
const newItem = users.createItem(); // returns object
// ex: { name: null, age: null, _id: 'ad5sad132' }
  • createItem(number) Creates multiple items with properties initialized to null based on the defined data format.
// Create a list of items with default values
const itemList = users.createItem(100); // returns list
// ex: [{ name: null, age: null, _id: 'ad5sad132' },...]
  • add(item) Adds a new item into the database if it conforms to the specified data format.
// Add a new item to the database
newItem.name = 'John';
newItem.age = 25;
const added = users.add(newItem); // returns boolean
  • find(item) Finds and returns an item from the database based on provided criteria. Input should contain only unique values.
// Find an item by unique values
const foundItem = users.find({ name: 'John' }); // returns object
  • findAll(item) Finds and returns an array of items from the database based on provided criteria.
// Find all items matching certain criteria
const allItems = users.findAll({ age: 25 }); // returns list
  • update(item) Updates an existing item in the database with the provided data, including original _id.
// Update an existing item
newItem.age = 26;
const updated = users.update(newItem); // returns boolean
  • remove(item) Removes an item from the database based on provided criteria. Input should contain only unique values.
// Remove an item by unique values
const removed = users.remove({ name: 'John' }); // returns boolean
  • removeAll(item) Removes all items from the database that matches provided criteria. Input can be any data.
// Remove all items matching certain criteria
const removedAll = users.removeAll({ age: 26 }); // returns boolean
  • addFromList(list) Adds all items in a list to the database if it conforms to the specified data format.
// Add list of items to the database
const addedFromList = users.addFromList(itemList); // returns boolean
  • updateFromList(list) Updates multiple items in database as provided list, including original _id.
// Update multiple items
const updatedFromList = users.updateFromList(itemList); // returns boolean
  • removeFromList(list) Removes multiple items from the database based on provided list of criteria. Input should contain only unique values.
// Remove multiple items
const removedFromList = users.removeFromList([{ name: 'John' }, { name: 'Maria' }]); // returns boolean
  • getAll() Returns an array containing all items in the database.
// Get all items in the database
const allData = users.getAll(); // returns list
  • reset() Resets the entire table, removing all items.
// Reset the database (remove all items)
users.reset();

Features

  • Saves your time - no need to learn, install, create connections, sign up for other databases.

  • Easy to use - simple intuitive functions to manage with your tables.

  • Fast to work - simplicity of this tool makes your work more faster.

  • List control - manipulate large amount of data faster.

2.0.2

6 months ago

2.0.1

6 months ago

2.0.0

6 months ago

1.1.4

6 months ago

1.1.3

6 months ago

1.1.2

6 months ago

1.1.1

6 months ago

1.1.0

6 months ago

1.0.11

6 months ago

1.0.10

6 months ago

1.0.9

6 months ago

1.0.8

6 months ago

1.0.7

6 months ago

1.0.6

6 months ago

1.0.5

6 months ago

1.0.4

6 months ago

1.0.3

6 months ago

1.0.2

6 months ago

1.0.1

6 months ago

1.0.0

6 months ago