[go: up one dir, main page]

cryptedjsondb

1.1.3 • Public • Published

CryptedJSONdb

CryptedJSONdb is a module for Node.js that provides an easy and convenient way to open and retrieve JSON data.
It includes methods for setting and discovering by keys and uses secure data encryption with crypto-js encryption.
CryptedJSONdb can store configuration data, update settings, and any other data in JSON format.

Installing

npm install cryptedjsondb

Usage

const CryptedJSONdb = require("cryptedjsondb");
const db = new CryptedJSONdb('./data.json', {
    encryption: true,
    key: "your secret key",
    minify: true
});

// set a value
console.log(db.setValue(1000, 'users', 'scar17off', 'balance')); // returns true if set, returns false if it equals it already

// get a value
const value = db.getValue('users', 'scar17off', 'balance');
console.log(value); // 1000

// add a value to arraylist
db.setValue([], "1");
db.addKeyToArr(1, "1");

console.log(db.getPath("users", "scar17off"));
console.log(db.data);

console.log(db.getItemByIndex(0, "1"));

Package Sidebar

Install

npm i cryptedjsondb

Weekly Downloads

0

Version

1.1.3

License

MIT

Unpacked Size

6.3 kB

Total Files

4

Last publish

Collaborators

  • scar17off