1.2.1 • Published 4 years ago

dc-ez.db v1.2.1

Weekly downloads
13
License
ISC
Repository
github
Last release
4 years ago

dc-ez.db

A simple and easy database package for discord bots.

How To Install

  • npm i dc-ez.db

How To Use

Add package to your project with: const db = require('dc-ez.db');

Examples

db.set('serverPrefix', '!');
// output: true

db.get('serverPrefix');
// output: '!'

db.set('items', ['apple', 'orange']);
// output: true

db.push('items', 'banana');
// output: true

db.get('items');
// output: ['apple', 'orange', 'banana']

db.remove('items');
// output: true
// 'items' database removed

db.set('level', 10);
// output: true

db.add('level', 23);
// output: true

db.get('level');
//output: 33
1.2.1

4 years ago

1.2.0

4 years ago

2.0.3

4 years ago

2.0.2

4 years ago

2.0.1

4 years ago

2.0.0

4 years ago

1.1.0

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.2

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

0.0.3

4 years ago

0.0.4

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago