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.
npm install deepbase
import DeepBase from "deepbase"; // or... const DeepBase = require("deepbase");
const mem = new DeepBase({ name: "db" }); // db.json
await mem.set("config", "lang", "en");
const configLang = await mem.get("config", "lang");
console.log(configLang); // "en"
const path = await mem.add("user", { name: "martin" });
// add() will create a secure key (ie. "iKidAOCKds")
console.log(path) // [ 'user', 'iKidAOCKds' ]
const userName = await mem.get(...path, "name");
console.log(userName); // "martin"
await mem.inc(...path, "balance", 160);
await mem.inc(...path, "balance", 420);
const userBalance = await mem.get(...path, "balance");
console.log(userBalance); // 580
await mem.upd("config", "lang", v => v.toUpperCase());
const lang = await mem.get("config", "lang"); // EN
await mem.add("user", { name: "anya" });
const userIds = await mem.keys("user")
console.log(userIds) // [ 'iKidAOCKds', 'FEwORvJjs' ]
console.log(await mem.get()) // db.json
// {
// config: { lang: 'EN' },
// user: {
// iKidAOCKds: { name: 'martin', balance: 580 },
// FEwORvJjs: { name: 'anya' }
// }
// }
DeepBase supports custom JSON serialization, allowing for circular references in complex data structures.
const CircularJSON = require('circular-json');
const db = new DeepBase({
stringify: (obj) => CircularJSON.stringify(obj, null, 4),
parse: CircularJSON.parse
});
await db.set("a", "b", { circular: {} });
await db.set("a", "b", "circular", "self", await db.get("a", "b"));
const { parse, stringify } = require('flatted');
const db = new DeepBase({ stringify, parse });
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
await secureDB.set("users", "admin", { password: "secret123" });
- 🔍 Easily access and modify nested objects in JSON storage.
- 📁 Automatically save changes to a file.
- 🌱 Simple and intuitive API for managing complex JSON structures.
- ⚡ Fastest and simplest way to add persistence to your projects.
- 📖 View information in a user-friendly format.
- 🧠 Easy to use and understand.
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.
DeepBase is a powerful and flexible solution for managing complex JSON structures.
🚀 Try it out and simplify your code today!
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.