GoodDB is a lightweight and flexible TypeScript database wrapper that simplifies interactions with your database. It offers a simple API, supports various drivers, and is designed with modern TypeScript development in mind.
- Simple API: GoodDB provides a simple and intuitive API for common database operations, making it easy to use and understand.
- Multiple Drivers: Choose from a variety of drivers to store data in memory, files, or databases such as SQLite, MongoDB, and more.
- Async/Await Support: GoodDB supports async/await for seamless integration with modern JavaScript and TypeScript applications.
- Flexible Configuration: Customize the database configuration to suit your needs, including table/collection names, nested key handling, and more.
- Type Safety: GoodDB is written in TypeScript and provides type definitions for a seamless development experience.
- Fast and Lightweight: GoodDB is fast and lightweight, making it ideal for small to medium-sized applications.
- Caching: GoodDB supports caching to improve performance and reduce the number of database queries.
You can install GoodDB via npm:
npm install good.db
You can customize the database configuration by passing options to the driver:
const db = new GoodDB(new JSONDriver({ path: './database.json' }), {
table: 'data',
nested: '.',
nestedIsEnabled: true,
cache: {
isEnabled: true,
capacity: 1024
}
});
-
table
(string): The name of the table/collection in the database. -
nested
(string): The character used to separate nested keys. -
nestedIsEnabled
(boolean): Whether to enable nested key handling. -
cache
isEnabled
(boolean): Whether to enable caching.capacity
(number): The maximum number of entries to cache.
GoodDB supports the following drivers:
The MemoryDriver
stores data in memory. It is suitable for small applications and is easy to set up.
import { GoodDB, MemoryDriver } from 'good.db';
const db = new GoodDB(new MemoryDriver());
The SQLiteDriver
stores data in an SQLite database. It is suitable for small to medium-sized applications and is easy to set up.
import { GoodDB, SQLiteDriver } from 'good.db';
const db = new GoodDB(new SQLiteDriver({ path: './database.sqlite' }));
The YMLDriver
stores data in a YML file. It is suitable for small to medium-sized applications and is easy to set up.
import { GoodDB, YMLDriver } from 'good.db';
const db = new GoodDB(new YMLDriver({ path: './database.yml' }));
The JSONDriver
stores data in a JSON file. It is suitable for small to medium-sized applications and is easy to set up.
import { GoodDB, JSONDriver } from 'good.db';
const db = new GoodDB(new JSONDriver({ path: './database.json' }));
The MongoDBDriver
stores data in a MongoDB database. It is suitable for medium to large-sized applications and offers advanced features.
import { GoodDB, MongoDBDriver } from 'good.db';
const db = new GoodDB(new MongoDBDriver({ uri: 'mongodb://localhost:27017/mydb' }));
await db.connect();
The PostgreSQLDriver
stores data in a PostgreSQL database. It is suitable for medium to large-sized applications and offers advanced features.
import { GoodDB, PostgreSQLDriver } from 'good.db';
const db = new GoodDB(new PostgreSQLDriver({
user: 'user',
host: 'localhost',
}));
await db.connect();
The MySQLDriver
stores data in a MySQL database. It is suitable for medium to large-sized applications and offers advanced features.
import { GoodDB, MySQLDriver } from 'good.db';
const db = new GoodDB(new MySQLDriver({
user: 'user',
host: 'localhost'
}));
from
(Driver): The driver to convert from.to
(Driver): The driver to convert to.table
(string): The name of the table/collection to convert.
Convert an SQLite database to a JSON file:
import { Convertor, SQLiteDriver, JSONDriver } from 'good.db';
const convertor = new Convertor({
from: new SQLiteDriver({
path: './client/database.sqlite'
}),
to: new JSONDriver({
path: './client/database.json'
}),
table: 'all_tables',
});
convertor.convert().then(console.log).catch(console.error);
Set a value in the database:
// Sync
db.set('user', { name: 'Alice', age: 25 }); // true
Get a value from the database:
db.get('user'); // { name: 'Alice', age: 25 }
Check if a key exists in the database:
db.has('user'); // true
Delete a key from the database:
db.delete('user'); // true
Push a value to an array in the database:
db.push('users', { name: 'Alice', age: 25 }); // true
db.push('users', { name: 'Bob', age: 30 }); // true
db.push('users', { name: 'Charlie', age: 35 }); // true
db.get('users'); // [{ name: 'Alice', age: 25 }, { name: 'Bob', age: 30 }, { name: 'Charlie', age: 35 }]
Remove the first element from an array in the database:
db.shift('users'); // { name: 'Alice', age: 25 }
db.get('users'); // [{ name: 'Bob', age: 30 }, { name: 'Charlie', age: 35 }]
Add an element to the beginning of an array in the database:
db.unshift('users', { name: 'Alice', age: 25 }); // true
db.get('users'); // [{ name: 'Alice', age: 25 }, { name: 'Bob', age: 30 }, { name: 'Charlie', age: 35 }]
Remove the last element from an array in the database:
db.pop('users'); // { name: 'Charlie', age: 35 }
db.get('users'); // [{ name: 'Alice', age: 25 }, { name: 'Bob', age: 30 }]
Remove a value from an array in the database:
db.pull('users', { name: 'Bob', age: 30 }); // true
db.get('users'); // [{ name: 'Alice', age: 25 }]
db.pull('users', (element) => element.age > 20); // true
db.get('users'); // []
find(key: string, callback: (value: any, index: number, obj: any[]) => unknown, options?: methodOptions)
Find a value in an array in the database:
db.push('users', { name: 'Alice', age: 25 });
db.push('users', { name: 'Bob', age: 30 });
db.push('users', { name: 'Charlie', age: 35 });
db.find('users', (object) => object.name == 'Bob') // { name: 'Bob', age: 30 }
Get distinct values from an array in the database:
db.push('users', "Alice");
db.push('users', "Alice");
db.push('users', "Alice");
db.distinct('users', "Alice"); // ['Alice']
Add a number to a value in the database:
db.set('score', 10);
db.add('score', 5); // 15
Subtract a number from a value in the database:
db.set('score', 10);
db.subtract('score', 5); // 5
Multiply a value in the database by a number:
db.set('score', 10);
db.multiply('score', 5); // 50
Divide a value in the database by a number:
db.set('score', 10);
db.divide('score', 5); // 2
Perform a mathematical operation on a value in the database:
db.set('score', 10);
db.math('score', '+', 5); // 15
db.math('score', '-', 5); // 10
db.math('score', '*', 5); // 50
db.math('score', '/', 5); // 10
Get the type of a value in the database:
db.set('user', { name: 'Alice', age: 25 });
db.type('user'); // 'object'
Get the size of a value in the database:
db.set('users', [{ name: 'Alice', age: 25 }, { name: 'Bob', age: 30 }, { name: 'Charlie', age: 35 }]);
db.size('users'); // 3
Get all the keys that start with a given string:
db.set('user1', { name: 'Alice', age: 25 });
db.set('user2', { name: 'Bob', age: 30 });
db.set('user3', { name: 'Charlie', age: 35 });
db.startsWith('user'); // { user1: { name: 'Alice', age: 25 }, user2: { name: 'Bob', age: 30 }, user3: { name: 'Charlie', age: 35 } }
Get all the keys that end with a given string:
db.set('user1', { name: 'Alice', age: 25 });
db.set('user2', { name: 'Bob', age: 30 });
db.set('user3', { name: 'Charlie', age: 35 });
db.endsWith('1'); // { user1: { name: 'Alice', age: 25 } }
Get all the keys that include a given string:
db.set('user1', { name: 'Alice', age: 25 });
db.set('user2', { name: 'Bob', age: 30 });
db.set('user3', { name: 'Charlie', age: 35 });
db.includes('user'); // { user1: { name: 'Alice', age: 25 }, user2: { name: 'Bob', age: 30 }, user3: { name: 'Charlie', age: 35 } }
Get all the keys in the database:
db.set('user1', { name: 'Alice', age: 25 });
db.set('user2', { name: 'Bob', age: 30 });
db.set('user3', { name: 'Charlie', age: 35 });
db.keys(); // ['user1', 'user2', 'user3']
Get all the values in the database:
db.set('user1', { name: 'Alice', age: 25 });
db.set('user2', { name: 'Bob', age: 30 });
db.set('user3', { name: 'Charlie', age: 35 });
db.values(); // [{ name: 'Alice', age: 25 }, { name: 'Bob', age: 30 }, { name: 'Charlie', age: 35 }]
Get all the entries in the database:
db.set('user1', { name: 'Alice', age: 25 });
db.set('user2', { name: 'Bob', age: 30 });
db.set('user3', { name: 'Charlie', age: 35 });
db.all(); // { user1: { name: 'Alice', age: 25 }, user2: { name: 'Bob', age: 30 }, user3: { name: 'Charlie', age: 35 } }
Clear the database:
db.clear(); // true
Make table operations on the database:
db.table('users').set('user1', { name: 'Alice', age: 25 }); // true
db.table('users').get('user1'); // { name: 'Alice', age: 25 }
Connect to the database (for ASYNC drivers like MongoDBDriver
, PostgreSQLDriver
and MySQLDriver
):
await db.connect();
Disconnect from the database (for ASYNC drivers like MongoDBDriver
, PostgreSQLDriver
and MySQLDriver
):
await db.disconnect();
Contributions are welcome! For major changes, please open an issue first to discuss what you would like to change.
If you have any questions or need assistance, please feel free to open an issue or contact us at
GoodDB is licensed under the MIT License. See the LICENSE file for details.