@aurios/jason
Version:
A simple, lightweight, and embeddable JSON document database built on Bun.
17 lines (16 loc) • 472 B
TypeScript
/**
* Options for creating a JasonDB instance
* @property path - The root directory where the database folder will be created
* @property basename - The name of the database folder itself
*
* @example
* // Database will be created at "/absolute/path/to/custom-location/my-database"
* const options = {
* basename: 'my-database',
* path: '/absolute/path/to/custom-location'
* };
*/
export interface JasonDBOptions {
basename: string;
path: string;
}