![Quick.db](https://i.plexidev.org/R7rG)
Quick.db is an open-sourced package meant to provide an easy way for beginners, and people of all levels to access & manage a database. All data is stored persistently, and comes with various extra features.
- Persistent storage w/ no setup (Data doesn't disappear through restarts)
- Beginner Friendly
- Discord Support
- Multiple tables support
- and more!
![Examples](https://i.plexidev.org/Vi3L)
All data in quick.db is stored persistently in a database. Here is an example of setting an object in the database, then fetching parts & the full object.
const db = require('quick.db');
db.set('userInfo', { difficulty: 'Easy' })
db.push('userInfo.items', 'Sword')
db.add('userInfo.balance', 500)
db.push('userInfo.items', 'Watch')
db.add('userInfo.balance', 500)
db.get('userInfo.balance')
db.get('userInfo.items')
![Installation](https://i.plexidev.org/P3DV)
If you're having troubles installing, please follow this troubleshooting guide.
Linux & Windows
Note: Windows users may need to do additional steps listed here.
Mac
- Install: XCode
- Run:
npm i -g node-gyp
in terminal - Run:
node-gyp --python /path/to/python2.7
(skip this step if you didn't install python 3.x) - Run:
npm i quick.db
![What is quick.db?](https://i.plexidev.org/ced4)
Quick.db is an easy to use database wrapper for better-sqlite3, it was designed to be simple to let new users who are just getting into development and don't want to worry about learning SQL just quite yet.
Over 16,000 open-source programs use Quick.db as a dependent! Source