Welcome to my blog! Here you'll find articles about software development, programming and other random topics.
In my previous post, I showed how to use Biome and Grit to catch common mistakes in Kysely queries, such as missing select clauses or where clauses. Another common issue is forgetting to add a returning clause to insert, update, or delete queries, which can lead to unexpected results when the query
Read more →I’ve been using Kysely heavily recently. It’s great for type-safety, but it has a specific pitfall: it is very easy to write a valid TypeScript expression that creates a query builder but never actually executes it.
Read more →