1.4.8 โ€ข Published 4 months ago

deepbase v1.4.8

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

๐ŸŒณ DeepBase

DeepBase is the fastest and simplest way to add persistence to your projects while allowing you to view information in a user-friendly format.

A powerful JSON-based storage library that allows you to store, retrieve, and modify nested objects with ease.

๐Ÿ“ฆ Installation

npm install deepbase

๐Ÿ”ง Usage

const DeepBase = require("deepbase");
const mem = new DeepBase({ name: "db" }); // db.json

โœ๏ธ Setting Values

mem.set("config", "lang", "en");

const configLang = mem.get("config", "lang");
console.log(configLang); // "en"

โœ… Adding Rows

const path = mem.add("user", { name: "martin" });

// add() will create a secure key (ie. "iKidAOCKds")
console.log(path) // [ 'user', 'iKidAOCKds' ]

const userName = mem.get(...path, "name");
console.log(userName); // "martin"

๐Ÿ”ข Increment fields

mem.inc(...path, "balance", 160);
mem.inc(...path, "balance", 420);

const userBalance = mem.get(...path, "balance");
console.log(userBalance); // 580

โš—๏ธ Update

mem.upd("config", "lang", v => v.toUpperCase());
const lang = mem.get("config", "lang"); // EN

๐Ÿ”ฅ Finally

mem.add("user", { name: "anya" });

const userIds = mem.keys("user")
console.log(userIds) // [ 'iKidAOCKds', 'FEwORvJjs' ]

console.log(mem.get()) // db.json
// {
//     config: { lang: 'EN' },
//     user: {
//         iKidAOCKds: { name: 'martin', balance: 580 },
//         FEwORvJjs: { name: 'anya' }
//     }
// }

๐Ÿงช Custom JSON Serialization

DeepBase supports custom JSON serialization, allowing for circular references in complex data structures.

Example with CircularJSON:

const CircularJSON = require('circular-json');
const db = new DeepBase({
    stringify: (obj) => CircularJSON.stringify(obj, null, 4),
    parse: CircularJSON.parse
});

db.set("a", "b", { circular: {} });
db.set("a", "b", "circular", "self", customDB.get("a", "b"));

Example with flatted:

const { parse, stringify } = require('flatted');
const db = new DeepBase({ stringify, parse });

๐Ÿ”’ Secure Storage with Encryption

const CryptoJS = require('crypto-js');

class DeepbaseSecure extends DeepBase {
    constructor(opts) {
        opts.stringify = (obj) => {
            const iv = CryptoJS.lib.WordArray.random(128 / 8);
            const encrypted = CryptoJS.AES.encrypt(JSON.stringify(obj), opts.encryptionKey, { iv });
            return iv.toString(CryptoJS.enc.Hex) + ':' + encrypted.toString();
        };

        opts.parse = (encryptedData) => {
            const [ivHex, encrypted] = encryptedData.split(':');
            const iv = CryptoJS.enc.Hex.parse(ivHex);
            const bytes = CryptoJS.AES.decrypt(encrypted, opts.encryptionKey, { iv });
            return JSON.parse(bytes.toString(CryptoJS.enc.Utf8));
        };

        super(opts);
    }
}

// Create an encrypted database
const secureDB = new DeepbaseSecure({
    name: "secure_db",
    encryptionKey: 'your-secret-key'
});

// Use it like a regular DeepBase instance
secureDB.set("users", "admin", { password: "secret123" });

๐Ÿคฏ Features

  • ๐Ÿ” Easily access and modify nested objects in JSON storage.
  • ๐Ÿ“ Automatically save changes to a file.
  • ๐ŸŒฑ Simple and intuitive API for managing complex JSON structures.

๐Ÿค” Why DeepBase

  • โšก Fastest and simplest way to add persistence to your projects.
  • ๐Ÿ“– View information in a user-friendly format.
  • ๐Ÿง  Easy to use and understand.

๐Ÿค Contributing

Contributions to DeepBase are welcome! If you have an idea or a bug to report, please open an issue. If you would like to contribute to the code, please open a pull request.

๐ŸŽฌ Conclusion

DeepBase is a powerful and flexible solution for managing complex JSON structures.

๐Ÿš€ Try it out and simplify your code today!

๐Ÿ“„ License

The MIT License (MIT)

Copyright (c) Martin Clasen

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

1.4.6

4 months ago

1.3.6

4 months ago

1.4.4

4 months ago

1.4.2

4 months ago

1.3.2

4 months ago

1.4.8

4 months ago

1.3.8

4 months ago

1.3.0

4 months ago

1.2.8

5 months ago

1.2.6

8 months ago

1.2.0

8 months ago

1.2.4

8 months ago

1.2.2

8 months ago

1.1.8

10 months ago

1.1.6

10 months ago

1.1.4

1 year ago

1.1.2

1 year ago

1.1.12

1 year ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.9

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.2

2 years ago

0.9.8

2 years ago

0.9.6

2 years ago

0.8.6

2 years ago