1.1.5 • Published 1 year ago

geardb v1.1.5

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Another Local JSON Database.

GitHub license GitHub stars GitHub forks GitHub issues GitHub pull requests

How to use

// ES6
import GearDB from 'geardb';
// CommonJS
const GearDB = require('geardb');

const db = new GearDB("db.json"); // path to db.

await db.set("key", "value");

console.log(await db.get("key")); // log 'value'

await db.push("list", "value");

console.log(await db.get("list")); // log ['value']

await db.pull("list", "value");

// -- OR --

await db.pull("list", 0);

console.log(await db.get("list")); // log []

await db.filter("list",(value) => value !== "value");

console.log(await db.get("list")); // log []


// -- find,findAndSet, findAndPush, findAndPull ---

"test" :[
    {
      "userId": "2121",
      "values": [
        {
          "id": 1,
          "value": 122
        }
      ]
    }
  ]


console.log(await db.find("test.userId=2121.values.id=1.value")); // log 122

await db.findAndPush("test.userId=2121.values", { id: 12, value: 1222 }) // in test array, finds element which userId is 2121  and pushes { id: 12, value: 1222 }
await db.findAndSet("test.userId=2121.values.id=1.value", 1222) // in test array, finds element which userId is 2121 and in values array finds element which id is 1 and sets value 1222
await db.findAndSet("test.userId=2121.userId", 1222) // in test array, finds element which userId is 2121 and sets userId 1222
await db.findAndPull("test","userId=2121") // in test array, finds element which userId is 2121 and removes it
await db.findAndPull("test.userId=2121.values","id=1") // in test array, finds element which userId is 2121 and in values array finds element which id is 1 and removes it
1.1.5

1 year ago

1.1.4

1 year ago

1.1.1

1 year ago

1.1.0

1 year ago

1.0.9

1 year ago

1.1.3

1 year ago

1.1.2

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago