Prisma Client

Auto-generated, type-safe database client for Node.js and TypeScript.

Library
npm
v7.9.1
47,568stars
Apache License 2.0

Repository Health

Pre-computed score based on development activity, maintenance, community, maturity, and trend momentum.How we score it →
90/100Excellent
Development Activity100
Maintenance100
Community60
Maturity60
Momentum40

Technical Analysis

AI-assessed by reading the actual repository — architecture, code quality, innovation, and documentation.How we score it →
85/100Excellent
Architecture90
Code Quality85
Innovation88
Learning Curve78

Prisma Client is the auto-generated, type-safe query builder at the heart of Prisma ORM. Instead of hand-writing SQL or wiring up a schema-less query builder, you define your data model once in a Prisma schema file, run prisma generate, and get back a fully-typed client tailored to your exact models, relations, and fields — with autocompletion for every query, filter, and result shape in your editor.

It ships as a thin runtime package: the generated client delegates the actual database work to a query engine (native Rust binary or WASM, or a JS driver adapter for edge/serverless runtimes), so the JavaScript/TypeScript surface stays small while still supporting PostgreSQL, MySQL, MariaDB, SQLite, SQL Server, CockroachDB, and MongoDB through one consistent API.

What You Get

  • A fully-typed CRUD and relational query API generated directly from your Prisma schema, with autocompletion for models, fields, filters, and nested relations
  • First-class TypeScript types for every query result, including partial selects and included relations, so mismatched fields fail at compile time instead of runtime
  • Pluggable driver adapters (@prisma/adapter-pg, @prisma/adapter-neon, @prisma/adapter-libsql, etc.) for running in edge and serverless runtimes without the native query engine binary
  • A client extensions API ($extends) for adding custom methods, computed fields, query middleware, and result transformations without forking the generated client
  • Built-in support for interactive and sequential transactions, raw SQL escape hatches ($queryRaw/$executeRaw), and OpenTelemetry-based query tracing

Common Use Cases

  • Type-safe data access layer for REST, GraphQL, or gRPC backends built on Node.js or TypeScript
  • Database client for serverless and edge functions (Vercel, Cloudflare Workers, Netlify) via driver adapters instead of the native engine binary
  • Rapid CRUD scaffolding for full-stack frameworks like Next.js, where the generated types flow straight into API routes and server components
  • Multi-database projects that need one consistent query API across Postgres in production and SQLite in local development or tests

Under The Hood

Architecture: Prisma Client is generated code, not a static library — running prisma generate reads your schema.prisma (and, since v7, prisma.config.ts) and emits a client tailored to your exact data model into the packages/client output. At runtime, the published @prisma/client package (packages/client/src/runtime/getPrismaClient.ts, ~1,150 lines) wires together the generated model API with the DMMF (Data Model Meta Format, an AST of your schema shipped from the Rust/WASM query engine), a request pipeline, and a pluggable Engine interface. Query execution is delegated to either a native binary engine, a WASM query-compiler, or a JS driver adapter (@prisma/adapter-pg, -neon, -libsql, -d1, -planetscale, -mssql, -mariadb, -better-sqlite3) — the same generated client code runs against any of them, which is how Prisma supports both traditional Node servers and edge/serverless runtimes from one API surface.

Tech Stack: The whole client package is TypeScript (98.95% of the repo by bytes) built with a custom helpers/build.ts (via tsx), Jest for unit/functional tests, and pnpm workspaces (pnpm-workspace.yaml) tying together ~40 packages under packages/client, client-common, client-engine-runtime, client-generator-js/-ts, internals, migrate, engines, and the per-database adapter-* packages. @prisma/client’s own runtime dependency footprint is intentionally minimal (@prisma/client-runtime-utils as its only non-peer dependency), with prisma and typescript as optional peer dependencies — the generator and CLI tooling live in separate packages so the installed client stays lean.

Code Quality: The client package has substantial automated test coverage — 49+ .test.ts files under packages/client/src/__tests__ covering DMMF parsing, raw-parameter serialization/deserialization, log-level resolution, type declarations, and dedicated types/ and integration/ suites, run through Jest with dotenv-loaded database credentials for integration tests and a separate test:functional harness for cross-database behavior. Source is organized by concern under src/runtime/core/ (engines, extensions, transaction, tracing, jsonProtocol, errors, model), which keeps the large runtime file (getPrismaClient.ts) focused on orchestration rather than implementation detail.

API Design: The generated API mirrors your schema directly — prisma.user.findMany({ where, include }) — so there’s near-zero boilerplate between defining a model and querying it, and results are typed down to the exact shape of the select/include you passed. The $extends mechanism and typed raw-SQL helpers (sql template tag, $queryRaw) give escape hatches without breaking type safety, and the required prisma generate step (rather than a fully dynamic client) is the main learning-curve cost, since it means the client is only ever as current as your last generate.

Used by 44 apps in this directory

TypeScript
76%
AGPL 3.0

Abby

Developer Tools · Product Management

167

Statically typed feature flags, remote config, and A/B testing with framework-native SDKs for TypeScript teams.

View details
30
Repo Health
70
Technical
63
Dependency
Built with
TypeScript76%
MDX18%
Updated 1 years ago
TypeScript
88%
Other

AFFiNE

Productivity · Project Management · Note Taking

71,668

Write, draw, and plan in one infinite canvas — the open-source alternative to Notion and Miro that keeps your data yours.

View details
91
Repo Health
87
Technical
68
Dependency
Built with
TypeScript88%
Updated today
Python
86%
MIT

ai-toolkit

AI Development · AI Design Tools

11,757

An all-in-one open-source training suite for finetuning diffusion models—FLUX, SDXL, Wan video, and audio—on consumer GPU hardware via CLI or web UI.

View details
77
Repo Health
66
Technical
75
Dependency
Built with
Python86%
TypeScript13%
Updated 2 days ago
TypeScript
96%
Other

Amplication

Developer Tools · AI Code Assistants · Automation

16,010

Create production-ready backend services with your organization's standards baked in — generating NestJS, Prisma, and GraphQL code that you own and control.

View details
61
Repo Health
84
Technical
60
Dependency
Built with
TypeScript96%
Updated 1 months ago
JavaScript
95%
MIT

AnythingLLM

Developer Tools · Automation · AI Assistants

64,914

The all-in-one AI platform for private document chat, no-code agents, and local LLMs with zero setup friction.

View details
91
Repo Health
78
Technical
68
Dependency
Built with
JavaScript95%
Updated today
TypeScript
49%
MPL 2.0

Artillery

Devops · Developer Tools

9,054

Cloud-scale load testing and functional testing for APIs, WebSockets, gRPC, and headless browsers, distributed across AWS Lambda or Fargate with zero infrastructure to manage.

View details
89
Repo Health
73
Technical
68
Dependency
Built with
TypeScript49%
JavaScript48%
Updated 5 days ago
TypeScript
92%
GPL 3.0

Blinko

Knowledge Management · Note Taking

10,880

A self-hosted, AI-powered card note-taking tool that lets you capture fleeting thoughts instantly and retrieve them with natural language search.

View details
83
Repo Health
69
Technical
65
Dependency
Built with
TypeScript92%
Updated 2 weeks ago
Rust
67%
MIT

Bun

Developer Tools

95,452

An all-in-one JavaScript and TypeScript toolkit — one Rust-and-JavaScriptCore binary that replaces Node.js, npm, a bundler, and a test runner with faster equivalents.

View details
92
Repo Health
91
Technical
66
Dependency
Built with
Rust67%
C++19%
Updated today
TypeScript
96%
Other

Cal.diy

Scheduling

47,796

The 100% MIT-licensed, community-driven scheduling platform — self-host your own booking infrastructure with no enterprise strings attached.

View details
93
Repo Health
86
Technical
66
Dependency
Built with
TypeScript96%
Updated 1 weeks ago

Join founders buildingwith open source

Opinionated takes, migration guides, cost-saving tips, and insights from the open source ecosystem.

Subscribe on Substack
Join 750+ subscribers

Search