Kysely (the type-safe SQL query builder for TypeScript) v0.29 is out btw
1–6 of 6 posts
Re: Kysely (the type-safe SQL query builder for TypeScript) v0.29 is out btw
#2DISCLAIMER: I'm co-leading the org/project.
We recently broke 6M downloads per week on NPM, and became 3rd after `drizzle-orm` and `@prisma/client`.
If you haven't tried it yet, it's a query builder, not an ORM. You don't outsource your SQL to someone else. It's type-safe, like.. it's super important to us. You can use it with ORMs - e.g. Prisma, mikro-orm, zenstack, etc. Allows you to compose some complex stuff but keep it maintainable af.
If you have. Great seeing ya'll here.
0.29 was a real nice release, with lots of goodies. Can't wait for 0.30, gonna be super fun.
Re: Kysely (the type-safe SQL query builder for TypeScript) v0.29 is out btw
#3Re: Kysely (the type-safe SQL query builder for TypeScript) v0.29 is out btw
#4How does it compare to Drizzle?
`kysely-ctl` doesn't generate migrations for you, and `kysely` not being an ORM, doesn't provide declarative schema design.
Re: Kysely (the type-safe SQL query builder for TypeScript) v0.29 is out btw
#5How does it compare to Drizzle?
As far as query building goes, `kysely` is more in-depth, type-safe, expressive, 1:1 and doesn't require importing as many things. `kysely-ctl` doesn't generate migrations for you, and `kysely` not being an ORM, doesn't provide declarative schema design.