data.id v7.1.4-1a
Website | Discord Support |
---|---|
InPlex Website | Discord |
Data.id 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!
All data in data.id is stored persistently in a database. Here is an example of setting an object in the database, then fetching parts & the full object.
const id = require('data.id');
// Setting an object in the database:
id.set('userInfo', { difficulty: 'Medium' })
// -> { difficulty: 'Medium' }
// Pushing an element to an array (that doesn't exist yet) in an object:
id.push('userInfo.items', 'Car')
// -> { difficulty: 'Meduim', items: ['Car'] }
// Adding to a number (that doesn't exist yet) in an object:
id.add('userInfo.balance', 500)
// -> { difficulty: 'Medium', items: ['Car'], balance: 500 }
// Repeating previous examples:
id.push('userInfo.items', 'Watch')
// -> { difficulty: 'Medium', items: ['Car'], balance: 500 }
id.add('userInfo.balance', 500)
// -> { difficulty: 'Medium', items: ['Car'], balance: 500 }
// Fetching individual properties
id.get('userInfo.balance') // -> 500
id.get('userInfo.items') // ['Sword', 'Watch']
If you're having troubles installing, please follow this troubleshooting guide.
Linux & Windows
npm i data.id
*Note: Windows users may need to do additional steps listed here.*
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 data.id
Data.id 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.