Socket
Socket
Sign inDemoInstall

fresh.db

Package Overview
Dependencies
19
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    fresh.db

Easy to use and fast JSON file based database.


Version published
Weekly downloads
35
increased by191.67%
Maintainers
1
Install size
2.18 MB
Created
Weekly downloads
 

Readme

Source

Logo

🌿 Fresh.db

  • Easy to use and fast JSON file based database.

Installation

$ npm install fresh.db

🌐 API

FreshDBOptions

  • name<String>: Database name. db
  • folderPath<String>: Database folder path. ./fresh.db
  • prettySave<Boolean>: If its true brefore saving prettfys the data. false
  • prettySaveSS<Integer>: Prettyf spacing amount. 2
  • disableGetSetErrors<Boolean>: If the setting is true, it does not care about the errors that occur while putting or receiving data in the database and tries again. false
  • DEBUG<Boolean>: false

FreshDB

Functions's first is argument always dataPath and it is string if first argument is exits

  • set(): (Any)
    • arg-1: (String)
    • arg-2: (Any)
  • get(): (Any)
    • arg-1: (String)
  • del(): (Boolean)
    • arg-1: (String)
  • has(): (Boolean)
    • arg-1: (String)
  • update()
    • arg-1: (String)
    • arg-2: (Function(data))
    • Example:
    set("my.data", 6); // 6
    getAll(); // {"my":{"data":6}}
    update("my.data", (d) => {
      return d * 2;
    }); // 12
    getAll(); // {"my":{"data":12}}
    
  • getAll(): (Object)
  • s.push(): (Any)
    • arg-1: (String)
    • arg-2: (Any)
  • s.unshift(): (Any)
    • arg-1: (String)
    • arg-2: (Any)
  • s.shift(): (Any)
    • arg-1: (String)
  • s.pop(): (Any)
    • arg-1: (String)
  • s.splice(): (Any)
    • arg-1: (String)
    • arg-2: (Number)
    • arg-3: (Number)
  • s.add(): (Number)
    • arg-1: (String)
    • arg-2: (Number)
  • s.subtract(): (Number)
    • arg-1: (String)
    • arg-2: (Number)
  • s.mulitply(): (Number)
    • arg-1: (String)
    • arg-2: (Number)
  • s.divide(): (Number)
    • arg-1: (String)
    • arg-2: (Number)
  • clear(): (None)
  • deleteDatabase(): (None)
  • isDeleted: (Boolean)

Example

const FreshDB = require("fresh.db");
// create a db or get existing one
let db = new FreshDB();

db.set("gameSettings.difficulty", "Hard");

db.set("gameSettings.playerName", "Armağan");

// Add random items to player's inventory
db.s.push(
  "player.inventory",
  "Gold Sword",
  "Diamond Hoe",
  "Hacked Sword",
  "Apple",
  "Beef",
  "Hacked Beef"
);

// But i don't want hacked items
db.update("player.inventory", (d) => {
  return d.filter((i) => !i.toLowerCase().includes("hacked"));
});

// get 2nd item in player's inventory
db.get("player.inventory[1]"); // Diamond Hoe

// set 2nd item in player's inventory
db.set("player.inventory[1]", "Diamond Sword");

🔙 Updates

Update (1.0.7): new 3 shorthands.
Update (1.0.41): Fixed setDefaultOptions.
Major Update (1.0.4): Better error handling & better readme & DEBUG option & prettySave and prettySaveSS options & now you can change default options (FreshDB.setDefaultOptions({})) & new 2 shorthands (db.s).
Update (1.0.30): Better handling for shorthands (db.s).
Update (1.0.29): Now supports recursive folderPath opening.
Update (1.0.2): Better readme.
Update (1.0.1): Fixing lots of bugs.
Update (1.0.0): First relese.

Created with ❤ by Kıraç Armğan Önal > + You are soo cool! Because you are using FreshDB! 💕💞💓


Keywords

FAQs

Last updated on 06 Nov 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc