1.2.2 • Published 10 months ago

flix.db v1.2.2

Weekly downloads
-
License
MIT
Repository
-
Last release
10 months ago

NPM: npmjs.com/flix.db

flix.db is an First Arabic package meant to provide an easy way for beginners and people of all levels to access & store data in a low to medium volume environment. All data is stored persistently via either better-sqlite3 or mysql2 and comes way various other quality-of-life features.

  • Persistent Storage - Data doesn't disappear through restarts
  • Multiple Drivers - You can use either better-sqlite3 or mysql2
  • Works out of the box - No need to set up a database server, all the data is stored locally in the same project
  • Beginner Friendly - Originally created for use in tutorials, the documentation is straightforward and jargon-free
  • & more...

Installation

1. Install XCode
2. Run `npm i -g node-gyp` in terminal
3. Run `node-gyp --python /path/to/python` in terminal
npm i flix.db better-sqlite3   # (Default) Local SQLite3 File
npm i flix.db mysql2    # (Alternative) MySQL Server Connection

Example

const { FlixDB } = require("flix.db");
const db = new FlixDB(); // will make a json.sqlite in the root folder
// if you want to specify a path you can do so like this
// const db = new FlixDB({ filePath: "source/to/path/test.sqlite" });

(async () => {
    // self calling async function just to get async
    // Setting an object in the database:
    await db.set("userInfo", { difficulty: "Easy" });
    // -> { difficulty: 'Easy' }

    // Getting an object from the database:
    await db.get("userInfo");
    // -> { difficulty: 'Easy' }

    // Getting an object property from the database:
    await db.get("userInfo.difficulty");
    // -> 'Easy'

    // Setting an object in the database:
    await db.set("userInfo", { difficulty: "Easy" });
    // -> { difficulty: 'Easy' }

    // Pushing an element to an array (that doesn't exist yet) in an object:
    await db.push("userInfo.items", "Sword");
    // -> { difficulty: 'Easy', items: ['Sword'] }

    // Adding to a number (that doesn't exist yet) in an object:
    await db.add("userInfo.balance", 500);
    // -> { difficulty: 'Easy', items: ['Sword'], balance: 500 }

    // Repeating previous examples:
    await db.push("userInfo.items", "Watch");
    // -> { difficulty: 'Easy', items: ['Sword', 'Watch'], balance: 500 }
    await db.add("userInfo.balance", 500);
    // -> { difficulty: 'Easy', items: ['Sword', 'Watch'], balance: 1000 }

    // Fetching individual properties
    await db.get("userInfo.balance"); // -> 1000
    await db.get("userInfo.items"); // ['Sword', 'Watch']
})();

Example With MySQLDriver

NOTE: In order to use this driver, install npm i mysql2 separately.

const { FlixDB, MySQLDriver } = require("flix.db");
(async () => {
    const mysqlDriver = new MySQLDriver({
        host: "localhost",
        user: "me",
        password: "secret",
        database: "my_db",
    });

    await mysqlDriver.connect(); // connect to the database **this is important**

    const db = new FlixDB({ driver: mysqlDriver });
    // Now you can use flix.db as normal

    await db.set("userInfo", { difficulty: "Easy" });
    // -> { difficulty: 'Easy' }
})();

Example With MongoDriver

NOTE: In order to use this driver, install npm i mongoose separately.

const { FlixDB, MongoDriver } = require("flix.db");
(async () => {
    const mongoDriver = new MongoDriver("mongodb://localhost/FlixDB");

    await mongoDriver.connect();

    const db = new FlixDB({ driver: mongoDriver });
    // Now you can use flix.db as normal

    await db.set("userInfo", { difficulty: "Easy" });
    // -> { difficulty: 'Easy' }

    await driver.close();
    // disconnect from the database
})();

Example With JSONDriver

NOTE: In order to use this driver, install npm i write-file-atomic separately.

const { FlixDB, JSONDriver } = require("flix.db");
const jsonDriver = new JSONDriver();
const db = new FlixDB({ driver: jsonDriver });

await db.set("userInfo", { difficulty: "Easy" });

Example With MemoryDriver

Note: In-memory database is not persistent and is suitable for temporary caching.

const { FlixDB, MemoryDriver } = require("flix.db");
const memoryDriver = new MemoryDriver();
const db = new FlixDB({ driver: memoryDriver });

await db.set("userInfo", { difficulty: "Easy" });

Changes in 1.2.1

  • Added two new database options: driver and filePath
    • By default, the Sqlite driver is used. Although, you can use the MySQL driver by looking at the example above. More drivers are planned for the future, feel free to submit a pull request as well.
  • Added .deleteAll() method
  • Added .pull() method (see below)
  • Changed all methods to use async/await
    • This is because some drivers, such as MySQL, need to use await. Using async/await globally adds code consistency throughout drivers.
  • Changed FlixDB into a class
  • Renamed the .subtract() method to .sub() to match the length of .add()
  • General bug fixes
    • A notable one includes storing numbers as strings in the database now working as intended.

.pull()

await db.set("myArray", [
    "axe",
    "sword",
    "shield",
    "health_potion",
    "mana_potion",
]);

await db.pull("myArray", "axe"); // Removing a single item
// -> ['sword', 'shield', 'health_potion', 'mana_potion']

await db.pull("myArray", ["sword", "shield"]); // Removing multiple options
// -> ['health_potion', 'mana_potion']

await db.pull("myArray", (i) => i.includes("potion")); // Using a function
// -> []
1.2.2

10 months ago

1.2.1

10 months ago

1.2.0

10 months ago

1.0.0

10 months ago