@deathinside/quick.js.db
TypeScript icon, indicating that this package has built-in type declarations

8.0.0 • Public • Published

Example

const quickdb = require('@deathinside/quick.js.db');

const db = quickdb('./json.sqlite');

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

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

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

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

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

Installation

Linux & Windows

  • npm i @deathinside/quick.js.db

Mac

  1. Install: XCode
  2. Run: npm i -g node-gyp in terminal
  3. Run: node-gyp --python /path/to/python2.7 (skip this step if you didn't install python 3.x)
  4. Run: npm i @deathinside/quick.js.db

Support

I work on these projects in my spare time, if you'd like to support me, you can do so via Discord! ❤️

Package Sidebar

Install

npm i @deathinside/quick.js.db

Weekly Downloads

4

Version

8.0.0

License

MIT

Unpacked Size

35.7 kB

Total Files

15

Last publish

Collaborators

  • alsheikhaminulislam