https://github.com/kysely-org/kysely
A type-safe typescript SQL query builder
https://github.com/kysely-org/kysely
browser bun database deno microsoft-sql-server mssql mysql nodejs postgresql query-builder sql sqlite type-safe typescript
Last synced: 5 days ago
JSON representation
A type-safe typescript SQL query builder
- Host: GitHub
- URL: https://github.com/kysely-org/kysely
- Owner: kysely-org
- License: mit
- Created: 2021-02-22T09:06:55.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2025-04-16T07:15:53.000Z (6 days ago)
- Last Synced: 2025-04-16T18:43:36.885Z (6 days ago)
- Topics: browser, bun, database, deno, microsoft-sql-server, mssql, mysql, nodejs, postgresql, query-builder, sql, sqlite, type-safe, typescript
- Language: TypeScript
- Homepage: https://kysely.dev
- Size: 48.7 MB
- Stars: 11,772
- Watchers: 29
- Forks: 302
- Open Issues: 108
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-kysely - Kysely - ts). | [link](https://github.com/xataio/client-ts/tree/main/packages/plugin-client-kysely) |  <br/> | (Dialects)
- awesome-luooooob - kysely-org/kysely - A type-safe typescript SQL query builder (TypeScript)
- StarryDivineSky - kysely-org/kysely
- trackawesomelist - Kysely (⭐11k) - safe typescript SQL query builder. (Recently Updated / [Feb 17, 2025](/content/2025/02/17/README.md))
- my-awesome-list - kysely - safe typescript SQL query builder | kysely-org | 11800 | (TypeScript)
- awesome-backend - Kysely - safe and autocompletion-friendly TypeScript SQL query builder. (Uncategorized / Uncategorized)
- awesome-backend - Kysely - safe and autocompletion-friendly TypeScript SQL query builder. (Table of contents / ORM's & ODM's)
- awesome-stack - kysely - Type-safe and autocompletion-friendly typescript SQL query builder for node.js and other javascript environments (Typescript)
- awesome-engineering - Kysely
README
[](https://stand-with-ukraine.pp.ua)
[](https://github.com/kysely-org/kysely/releases/latest)
[](https://github.com/kysely-org/kysely)
[](https://github.com/kysely-org/kysely/blob/master/LICENSE)
[](https://github.com/kysely-org/kysely/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc)
[](https://github.com/kysely-org/kysely/pulls?q=is%3Apr+is%3Aopen+sort%3Aupdated-desc)

[](https://www.npmjs.com/package/kysely)
[](https://bundlephobia.com/package/kysely)###### Join the discussion ⠀⠀⠀⠀⠀⠀⠀
[](https://discord.gg/xyBJ3GwvAm)
[](https://bsky.app/profile/kysely.dev)###### Get started
[](https://kysely.dev/docs/getting-started?dialect=postgresql)
[](https://kysely.dev/docs/getting-started?dialect=mysql)
[](https://kysely.dev/docs/getting-started?dialect=mssql)
[](https://kysely.dev/docs/getting-started?dialect=sqlite)
& more!# [Kysely](https://kysely.dev)
Kysely (pronounce “Key-Seh-Lee”) is a type-safe and autocompletion-friendly [TypeScript](https://www.typescriptlang.org/) [SQL](https://en.wikipedia.org/wiki/SQL) query builder.
Inspired by [Knex.js](http://knexjs.org/). Mainly developed for [Node.js](https://nodejs.org/en/) but also
runs on all other [JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript) environments like [Deno](https://deno.com/), [Bun](https://bun.sh/), [Cloudflare Workers](https://workers.cloudflare.com/)
and web browsers.
Kysely makes sure you only refer to tables and columns that are visible to the part of the query
you're writing. The result type only has the selected columns with correct types and aliases. As an
added bonus you get autocompletion for all that stuff.As shown in the gif above, through the pure magic of modern TypeScript, Kysely is even able to parse
the alias given to `pet.name` and add the `pet_name` column to the result row type. Kysely is able to infer
column names, aliases and types from selected subqueries, joined subqueries, `with` statements and pretty
much anything you can think of.Of course there are cases where things cannot be typed at compile time, and Kysely offers escape
hatches for these situations. See the [sql template tag](https://kysely-org.github.io/kysely-apidoc/interfaces/Sql.html)
and the [DynamicModule](https://kysely-org.github.io/kysely-apidoc/classes/DynamicModule.html#ref) for more info.All API documentation is written in the typing files and you can simply hover over the module, class
or method you're using to see it in your IDE. The same documentation is also hosted [here](https://kysely-org.github.io/kysely-apidoc/).If you start using Kysely and can't find something you'd want to use, please open an issue or join our
[Discord server](https://discord.gg/xyBJ3GwvAm).# Getting started
Please visit our documentation site [kysely.dev](https://kysely.dev) to get started. We also have a comprehensive
API documentation hosted [here](https://kysely-org.github.io/kysely-apidoc/), but you can access the same
documentation in your IDE by hovering over a class/method/property/whatever.# Core team
## Project leads
Responsible for project direction, API design, maintenance, code reviews, community support, documentation, and working on some of the most
impactful/challenging things.
![]()
Sami Koskimäki
(the author)
![]()
Igal Klebanov
(the dynamo)
## Honorable mentions
People who had special impact on the project and its growth.
![]()
Fernando Hurtado
(1st docs)
![]()
Wirekang
(playground)
![]()
Tim Griesser
(Knex)
![]()
Robin Blomberg
(codegen)
![]()
Shoubhit Dash
(prisma idea)
![]()
Valtýr Örn Kjartansson
(prisma impl)
![]()
Dax Raad
(early adopter)
![]()
Theo Browne
(early promoter)
![]()
Lee Robinson
(early promoter)
![]()
Ethan Resnick
(timely feedback)
![]()
Harminder Virk
(dope writeup)
![]()
Johan Eliasson
(promoter/educator)
## All contributors
![]()
Want to contribute? Check out our contribution guidelines.