SQLite
SQLite is a lightweight, serverless, self-contained SQL database engine that is widely used for local data storage in applications. Read more here.
Example Usage
Better Auth supports multiple SQLite drivers. Choose the one that best fits your environment:
Better-SQLite3 (Recommended)
The most popular and stable SQLite driver for Node.js:
For more information, read Kysely's documentation to the SqliteDialect.
Node.js Built-in SQLite (Experimental)
The node:sqlite
module is still experimental and may change at any time. It requires Node.js 22.5.0 or later.
Starting from Node.js 22.5.0, you can use the built-in SQLite module:
To run your application with Node.js SQLite:
Bun Built-in SQLite
You can also use the built-in SQLite module in Bun, which is similar to the Node.js version:
Schema generation & migration
The Better Auth CLI allows you to generate or migrate your database schema based on your Better Auth configuration and plugins.
SQLite Schema Generation | SQLite Schema Migration |
---|---|
✅ Supported | ✅ Supported |
Additional Information
SQLite is supported under the hood via the Kysely adapter, any database supported by Kysely would also be supported. (Read more here)
If you're looking for performance improvements or tips, take a look at our guide to performance optimizations.