Using postgres Instead of pg in Better Auth – Is It Possible?

I see that better-auth uses the pg npm library for database connections. However, I want to use the postgres npm package instead. Is it possible to configure Better Auth to work with the postgres library instead of pg? If so, how can I do it? Thanks in advance!
2 Replies
Ping
Ping2mo ago
Could you use Kysley postgres-js dialect instead? It uses postgres.js under the hood.
betterAuth({
database: new PostgresJSDialect({
postgres: postgres({
database: 'test',
host: 'localhost',
max: 10,
port: 5434,
user: 'admin',
}),
}),
});
betterAuth({
database: new PostgresJSDialect({
postgres: postgres({
database: 'test',
host: 'localhost',
max: 10,
port: 5434,
user: 'admin',
}),
}),
});
GitHub
GitHub - kysely-org/kysely-postgres-js: Kysely dialect for PostgreS...
Kysely dialect for PostgreSQL using the Postgres.js client. - kysely-org/kysely-postgres-js
javid
javidOP2mo ago
ok let me try thanks

Did you find this page helpful?