Database
Choosing the right database configuration
In order to use bknd, you need to prepare access information to your database and install the dependencies.
Connections to the database are managed using Kysely. Therefore, all its dialects are
theoretically supported. However, only the SQLite
dialect is implemented as of now.
Database
SQLite as file
The easiest to get started is using SQLite as a file. When serving the API in the “Integrations”, the function accepts an object with connection details. To use a file, use the following:
Please note that using SQLite as a file is only supported in server environments.
SQLite using LibSQL
Turso offers a SQLite-fork called LibSQL that runs a server around your SQLite database. To point bknd to a local instance of LibSQL, install Turso’s CLI and run the following command:
The command will yield a URL. Use it in the connection object:
SQLite using LibSQL on Turso
If you want to use LibSQL on Turso, sign up for a free account, create a database and point your connection object to your new database:
Custom Connection
Follow the progress of custom connections on its Github Issue. If you’re interested, make sure to upvote so it can be prioritized.
Any bknd app instantiation accepts as connection either undefined
, a connection object like
described above, or an class instance that extends from Connection
:
Initial Structure
To provide an initial database structure, you can pass initialConfig
to the creation of an app. This will only be used if there isn’t an existing configuration found in the database given. Here is a quick example:
Note that we didn’t add relational fields directly to the entity, but instead defined them afterwards. That is because the relations are managed outside the entity scope to have an unified expierence for all kinds of relations (e.g. many-to-many).
Defined relations are currently not part of the produced types for the structure. We’re working on that, but in the meantime, you can define them manually.
Type completion
All entity related functions use the types defined in DB
from bknd/core
. To get type completion, you can extend that interface with your own schema:
The type completion is available for the API as well as all provided React hooks.
Seeding the database
To seed your database with initial data, you can pass a seed
function to the configuration. It
provides the ModuleBuildContext
(reference) as the first argument.
Note that the seed function will only be executed on app’s first boot. If a configuration already exists in the database, it will not be executed.