Kysely
Kysely is a type-safe SQL query builder for TypeScript and Node.js. It provides a fluent, composable API for constructing SQL queries with compile-time type safety against a user-defined database schema. By defining a database interface that describes tables and their row shapes, developers receive strongly typed query results and can catch column or join mismatches during development rather than at runtime.
The library is database-agnostic in its API and relies on drivers or dialect adapters to communicate with
Key features include support for typical SQL statements such as select queries with joins, where clauses, group
Usage typically involves defining a DB interface that maps table names to their row types, creating a