Prisma Quickstart • Website • Docs • Examples • Blog • Discord • Twitter • Youtube What is Prisma? Prisma ORM is a next-generation ORM that consists of these tools:…
Prisma
Quickstart
•
Website
•
Docs
•
Examples
•
Blog
•
Discord
•
Twitter
•
Youtube
What is Prisma?
Prisma ORM is a next-generation ORM that consists of these tools:
- Prisma Client: Auto-generated and type-safe query builder for Node.js & TypeScript
- Prisma Migrate: Declarative data modeling & migration system
- Prisma Studio: GUI to view and edit data in your database
If you need a database to use with Prisma ORM, check out Prisma Postgres or if you are looking for our MCP Server, head here.
Getting started
Quickstart (5min)
The fastest way to get started with Prisma is by following the quickstart guides. You can choose either of two databases:
Bring your own database
If you already have your own database, you can follow these guides:
How Prisma ORM works
This section provides a high-level overview of how Prisma ORM works and its most important technical components. For a more thorough introduction, visit the Prisma documentation.
The Prisma schema
Every project that uses a tool from the Prisma toolkit starts with a Prisma schema file. The Prisma schema allows developers to define their _application models_ in an intuitive data modeling language and configure _generators_.
prisma
// Data source
datasource db {
provider = "postgresql"
}
// Generator
generator client {
provider = "prisma-client"
output = "../generated"
}
// Data model
model Post {
id Int @id @default(autoincrement())
title String
content String?
published Boolean @default(false)
author User? @relation(fields: [authorId], references: [id])
authorId Int?
}
model User {
id Int @id @default(autoincrement())
email String @unique
name String?
posts Post[]
}
In this schema, you configure three things:
- Data source: Specifies your database type and thus defines the features and data types you can use in the schema
- Generator: Indicates that you want to generate Prisma Client
- Data model: Defines your application models
prisma.config.ts
Database connection details are defined via prisma.config.ts.
ts
import { defineConfig } from 'prisma/config'
export default defineConfig({
datasource: {
url: 'postgres://...',
},
})
If you store the database connection string in process.env, an env function can help you access it in a type safe way and throw an error if it is missing at run time:
ts
import { defineConfig, env } from 'prisma/config'
export default defineConfig({
datasource: {
url: env('DATABASE_URL'),
},
})
Prisma ORM does not load the .env files for you automatically. If you want to populate the environment variables from a .env file, consider using a package such as dotenv or @dotenvx/dotenvx.
The configuration file may look like this in that case:
ts
import 'dotenv/config'
import { defineConfig, env } from 'prisma/config'
export default defineConfig({
datasource: {
url: env('DATABASE_URL'),
},
})
To start a local PostgreSQL development server without using Docker and without any configuration, run prisma dev:
sh
npx prisma dev
Alternatively, spin up an instant Prisma Postgres® database in the cloud:
sh
npx create-db --interactive
---
The Prisma data model
On this page, the focus is on the data model. You can learn more about Data sources and Generators on the respective docs pages.
Functions of Prisma models
The data model is a collection of models. A model has two major functions:
- Represent a table in the underlying database
- Provide the foundation for the queries in the Prisma Client API
Getting a data model
There are two major workflows for "getting" a data model into your Prisma schema:
- Generate the data model from introspecting a database
- Manually writing the data model and mapping it to the database with Prisma Migrate
---
Accessing your database with Prisma Client
Step 1: Install Prisma
First, install Prisma CLI as a development dependency and Prisma Client:
npm install prisma --save-dev
npm install @prisma/client
Step 2: Set up your Prisma schema
Ensure your Prisma schema includes a generator block with an output path specified:
prisma
generator client {
provider = "prisma-client"
output = "../generated"
}
datasource db {
provider = "postgresql" // mysql (incl. mariadb), sqlite, sqlserver, mongodb or cockroachdb
}
Step 3: Configure Prisma Config
Configure the Prisma CLI using a prisma.config.ts file. This file configures Prisma CLI subcommands like migrate and studio. Create a prisma.config.ts file in your project root:
ts
import { defineConfig, env } from 'prisma/config'
type Env = {
DATABASE_URL: string
}
export default defineConfig({
schema: 'prisma/schema.prisma',
migrations: {
path: 'prisma/migrations',
},
datasource: {
url: env('DATABASE_URL'),
},
})
Note: Environment variables from .env files are not automatically loaded when using prisma.config.ts. You can use dotenv by importing dotenv/config at the top of your config file. For Bun, .env files are automatically loaded.
Learn more about Prisma Config and all available configuration options.
Step 4: Generate Prisma Client
Generate Prisma Client with the following command:
npx prisma generate
This command reads your Prisma schema and _generates_ the Prisma Client code in the location specified by the output path in your generator configuration.
After you change your data model, you'll need to manually re-generate Prisma Client to ensure the generated code gets updated:
npx prisma generate
Refer to the documentation for more information about "generating the Prisma client".
Step 5: Use Prisma Client to send queries to your database
Once the Prisma Client is generated, you can import it in your code and send queries to your database.
Import and instantiate Prisma Client
You can import and instantiate Prisma Client from the output path specified in your generator configuration. When instantiating the Client, you need to provide a driver adapter to its constructor. For example, when using PostgreSQL with a driver adapter:
ts
import { PrismaClient } from './generated/client'
import { PrismaPg } from '@prisma/adapter-pg'
const adapter = new PrismaPg({ connectionString: process.env.DATABASE_URL })
const prisma = new PrismaClient({ adapter })
To load environment variables, you can use dotenv by importing dotenv/config, use tsx --env-file=.env, node --env-file=.env, or Bun (which loads .env automatically).
Now you can start sending queries via the generated Prisma Client API, here are a few sample queries. Note that all Prisma Client queries return _plain old JavaScript objects_.
Learn more about the available operations in the Prisma Client docs or watch this demo video (2 min).
Retrieve all User records from the database
ts
const allUsers = await prisma.user.findMany()
Include the posts relation on each returned User object
ts
const allUsers = await prisma.user.findMany({
include: { posts: true },
})
Filter all Post records that contain "prisma"
ts
const filteredPosts = await prisma.post.findMany({
where: {
OR: [{ title: { contains: 'prisma' } }, { content: { contains: 'prisma' } }],
},
})
Create a new User and a new Post record in the same query
ts
const user = await prisma.user.create({
data: {
name: 'Alice',
email: '[email protected]',
posts: {
create: { title: 'Join us for Prisma Day 2021' },
},
},
})
Update an existing Post record
ts
const post = await prisma.post.update({
where: { id: 42 },
data: { published: true },
})
Usage with TypeScript
Note that when using TypeScript, the result of this query will be _statically typed_ so that you can't accidentally access a property that doesn't exist (and any typos are caught at compile-time). Learn more about leveraging Prisma Client's generated types on the Advanced usage of generated types page in the docs.
Community
Prisma has a large and supportive community of enthusiastic application developers. You can join us on Discord and here on GitHub.
Badges
 
Built something awesome with Prisma? 🌟 Show it off with these badges, perfect for your readme or website.
[](https://prisma.io)
[](https://prisma.io)
Security
If you have a security issue to report, please contact us at [[email protected]](mailto:[email protected]?subject=[GitHub]%20Prisma%202%20Security%20Report%20).
Support
Ask a question about Prisma
You can ask questions and initiate discussions about Prisma-related topics in the prisma repository on GitHub.
Create a bug report for Prisma
If you see an error message or run into an issue, please make sure to create a bug report! You can find best practices for creating bug reports (like including additional debugging output) in the docs.
Submit a feature request
If Prisma currently doesn't have a certain feature, be sure to check out the roadmap to see if this is already planned for the future.
If the feature on the roadmap is linked to a GitHub issue, please make sure to leave a 👍 reaction on the issue and ideally a comment with your thoughts about the feature!
Contributing
Refer to our contribution guidelines and Code of Conduct for contributors.
Tests Status
- Prisma Tests Status:
Scheduled CI is currently disabled across the ORM repos; test workflows run on push, pull request, and manual workflow_dispatch. See the Actions tab for recent runs.
Members
-
prisma ★ PINNED
Next-generation ORM for Node.js & TypeScript | PostgreSQL, MySQL, MariaDB, SQL Server, SQLite, MongoDB and CockroachDB
TypeScript ★ 47k 6h agoExplain → -
prisma-examples ★ PINNED
🚀 Ready-to-run Prisma example projects
TypeScript ★ 6.6k 4m agoExplain → -
studio ★ PINNED
🎙️ The easiest way to explore and manipulate your data in all of your Prisma projects.
TypeScript ★ 2.2k 9d agoExplain → -
prisma1 ▣
💾 Database Tools incl. ORM, Migrations and Admin UI (Postgres, MySQL & MongoDB) [deprecated]
Scala ★ 16k 3y agoExplain → -
prisma-client-js ▣
Type-safe database client for TypeScript & Node.js (ORM replacement)
TypeScript ★ 1.5k 5y agoExplain → -
prisma-engines
🚂 Engine components of Prisma ORM
Rust ★ 1.3k 8h agoExplain → -
web
📚 Prisma Web Monorepo
MDX ★ 1.1k 7h agoExplain → -
migrate ▣
Issues for Prisma Migrate are now tracked at prisma/prisma. This repo was used to track issues for Prisma Migrate Experimental and is now deprecated.
TypeScript ★ 761 5y agoExplain → -
quaint ▣
SQL Query AST and Visitor for Rust
Rust ★ 578 3y agoExplain → -
tiberius
TDS 7.2+ (Microsoft SQL Server) driver for Rust
Rust ★ 427 4mo agoExplain → -
prisma-next
No description.
TypeScript ★ 415 2h agoExplain → -
server-components-demo ⑂ ▣
Demo app of React Server Components.
JavaScript ★ 299 2y agoExplain → -
language-tools
🌐 Prisma Language Tools = Language Server and Prisma's VS Code extension.
TypeScript ★ 295 6h agoExplain → -
react-native-prisma
No description.
TypeScript ★ 267 4mo agoExplain → -
database-schema-examples
Database Schema Examples we strive to support in Prisma
TSQL ★ 230 3y agoExplain → -
prisma-client-extensions
Examples of Prisma Client extensions.
TypeScript ★ 227 3h agoExplain → -
ecosystem-tests
🥼🧬🧪🔬🧫🦠 - Continuously tests Prisma Client with various operating systems, frameworks, platforms, databases and more.
JavaScript ★ 220 20d agoExplain → -
awesome-links
Users browse through a list of curated links and bookmark their favorite ones. Code for prisma.io course.
TypeScript ★ 216 1y agoExplain → -
blog-backend-rest-api-nestjs-prisma
A simple backend REST API for a blog built using NestJS, Prisma, PostgreSQL and Swagger.
TypeScript ★ 189 2y agoExplain → -
dataguide
🗄️ Prisma's Data Guide - A growing library of articles focused on making databases more approachable.
MDX ★ 162 1mo agoExplain → -
extension-read-replicas
Prisma Client Extension to add read replica support to your Prisma Client
TypeScript ★ 143 4mo agoExplain → -
fullstack-prisma-nextjs-blog
Fullstack Blog with Next.js and Prisma
TypeScript ★ 138 3m agoExplain → -
blogr-nextjs-prisma
No description.
TypeScript ★ 117 2mo agoExplain → -
prisma-test-utils ▣
A collection of data model agnostic test utils.
TypeScript ★ 113 3y agoExplain → -
nuxt-prisma
Prisma ORM integration for Nuxt
TypeScript ★ 92 7mo agoExplain → -
deployment-example-vercel
Prisma deployment to Vercel example
JavaScript ★ 87 6d agoExplain → -
specs ▣
⚠ This repository is not actively used any more, please check out the Prisma Documentation for updated information on Prisma. ⚠
Go ★ 85 6y agoExplain → -
text-editors ▣
No description.
TypeScript ★ 83 2y agoExplain → -
nextjs-prisma-postgres-demo
No description.
TypeScript ★ 81 1y agoExplain → -
faunadb-rust ▣
FaundaDB client for Rust
Rust ★ 63 2y agoExplain → -
vim-prisma ▣
Prisma support for Vim
Vim Script ★ 58 2y agoExplain → -
prisma-templates ▣
Prisma templates for major cloud providers
★ 52 5y agoExplain → -
try-prisma
No description.
TypeScript ★ 50 3mo agoExplain → -
prisma1-upgrade ▣
Prisma 1 Upgrade is a CLI tool to help Prisma 1 users upgrade to Prisma 2.x or newer.
TypeScript ★ 49 2y agoExplain → -
skills
No description.
★ 48 11d agoExplain → -
mcp
No description.
JavaScript ★ 46 9mo agoExplain → -
women-world-wide ▣
No description.
JavaScript ★ 39 3y agoExplain → -
codemods ▣
A Collection of Codemods for Prisma 2
JavaScript ★ 36 2y agoExplain → -
nextjs-auth-starter
No description.
TypeScript ★ 31 7mo agoExplain → -
prisma-nuxt
Prisma example showing how to use Prisma in a Nuxt application.
Vue ★ 29 2y agoExplain → -
nestjs-workshop-prisma-day-22
REST API for a rudimentary blog - from Prisma Day 22 NestJS workshop
TypeScript ★ 28 2y agoExplain → -
engines-wrapper
🌯 @prisma/engines-version npm package
TypeScript ★ 24 9h agoExplain → -
open-chat
No description.
TypeScript ★ 22 4d agoExplain → -
accelerate-speed-test
No description.
TypeScript ★ 22 11mo agoExplain → -
orm-benchmarks
Benchmark application to compare query latency of TypeScript ORMs.
TypeScript ★ 19 8mo agoExplain → -
prisma-edge-functions
No description.
TypeScript ★ 18 2y agoExplain → -
deployment-example-netlify ▣
Prisma deployment to Netlify example
JavaScript ★ 17 3y agoExplain → -
prisma-client-extension-starter
Starter template repository for building publishable Prisma Client extensions
TypeScript ★ 14 10mo agoExplain → -
studio-vercel-guide ▣
A guide to deploying Studio alongside your app on Vercel
JavaScript ★ 14 5y agoExplain → -
connection-string
connection-string + @pimeys/connection-string
Rust ★ 13 5mo agoExplain → -
demo-sveltekit
Demo app for Sveltekit article
Svelte ★ 13 2y agoExplain → -
ent ▣
An entity layer for Prisma 1 that uses the DataMapper pattern.
TypeScript ★ 12 7y agoExplain → -
engine-images
🖼️ Build & test images for Prisma engines.
Shell ★ 12 4mo agoExplain → -
eslint-config-prisma
🧹 Prisma's .eslintrc as an extensible shared config.
JavaScript ★ 12 2y agoExplain → -
reflector ▣
🪞 Utilities for meta-level interactions with the Prisma toolkit in Node.js.
TypeScript ★ 12 3y agoExplain → -
pris.ly ▣
Prisma shortlink service (hosted on Vercel)
★ 10 2y agoExplain → -
pulse-toolkit
💓 Prisma Pulse open source components
TypeScript ★ 10 1y agoExplain → -
prisma1-json-schema ▣
JSON schema of prisma.yml files
TypeScript ★ 10 5y agoExplain → -
templates ▣
Prisma templates packaged up for programatic consumption.
TypeScript ★ 10 3y agoExplain → -
studio-core-demo
Demonstrates how to use Studio Core
TypeScript ★ 9 1y agoExplain → -
cursor-plugin
No description.
JavaScript ★ 8 5mo agoExplain → -
create-db
Create temporary dbs with Prisma Postgres, fast.
TypeScript ★ 7 8d agoExplain → -
create-prisma-postgres-database-action
No description.
JavaScript ★ 7 9mo agoExplain → -
presskit
Presskit for Prisma
★ 7 1y agoExplain → -
migrate-from-sequelize-to-prisma
A migration guide from Sequelize to Prisma example
JavaScript ★ 7 4y agoExplain → -
prisma1-examples ▣
No description.
TypeScript ★ 7 5y agoExplain → -
mobc ⑂ ▣
A generic connection pool for Rust with async/await support
Rust ★ 7 3y agoExplain → -
prisma-admin-custom-components ▣
Examples of custom components for Prisma Admin
JavaScript ★ 6 7y agoExplain → -
mysql_async ⑂
Asyncronous Rust Mysql driver based on Tokio.
Rust ★ 6 4mo agoExplain → -
opentls
TLS connections for Rust using OpenSSL
Rust ★ 6 5y agoExplain → -
prisma-content-feedback ▣
Feedback for documentation, articles, tutorials, examples, ...
★ 6 6y agoExplain → -
prisma-admin-feedback ▣
Feedback for Prisma Admin (currently in invite-only preview)
★ 6 6y agoExplain → -
sublimeText3 ▣
Sublime Text 3 package supporting syntax highlighting.
★ 6 4y agoExplain → -
prisma-cli
No description.
TypeScript ★ 5 6d agoExplain → -
streams
No description.
TypeScript ★ 5 8h agoExplain → -
prisma-driver-adapters-nuxt
Example Nuxt 3 app using Prisma Driver Adapters and Cloudflare D1
TypeScript ★ 5 2y agoExplain → -
nextjs-edge-functions
Demo of using Next.js with Prisma ORM deployed to Vercel Edge Functions
TypeScript ★ 5 2y agoExplain → -
binding-argument-transform ▣
A library to make Prisma 1 arguments compatible with Prisma 2.
TypeScript ★ 5 5y agoExplain → -
migrate-from-typeorm-to-prisma
No description.
TypeScript ★ 5 5y agoExplain → -
prisma-1-cloud-feedback ▣
Feedback for Prisma Cloud
★ 5 6y agoExplain → -
prisma-read-replica-middleware
No description.
TypeScript ★ 4 3y agoExplain → -
create-prisma
No description.
TypeScript ★ 4 8d agoExplain → -
ppg-client
No description.
TypeScript ★ 4 8mo agoExplain → -
prisma-example-starter-template
No description.
★ 4 2y agoExplain → -
pokedex-prisma-next
No description.
TypeScript ★ 4 4mo agoExplain → -
official-prisma-railway
No description.
TypeScript ★ 4 5mo agoExplain → -
prisma-workshop-2021-fr ⑂
No description.
TypeScript ★ 4 2y agoExplain → -
prisma-accelerate-invalidation
No description.
TypeScript ★ 4 1y agoExplain → -
metrics-tutorial-prisma
Database Metrics with Prisma, Prometheus & Grafana
TypeScript ★ 4 3y agoExplain → -
prisma-platformatic
Prisma 💚 Platformatic exploration
JavaScript ★ 4 2y agoExplain → -
pulse-starter-old
A starter project to get you up and running with pulse.
TypeScript ★ 4 3y agoExplain → -
p1-to-p2-upgrade-path-feedback ▣
No description.
★ 4 6y agoExplain → -
prisma-day ▣
Prisma Day Code of Conduct
★ 4 4y agoExplain → -
composer
No description.
TypeScript ★ 3 12h agoExplain → -
tanstack-betterauth-demo
No description.
TypeScript ★ 3 5mo agoExplain → -
delete-prisma-postgres-database-action
No description.
JavaScript ★ 3 10mo agoExplain → -
query-compiler-benchmarks
No description.
TypeScript ★ 3 7mo agoExplain → -
.github
Org level configuration for installed GitHub apps
★ 3 2mo agoExplain → -
million-boxes-prisma-next
No description.
HTML ★ 3 4mo agoExplain → -
rust-postgres ⑂
Native PostgreSQL driver for the Rust programming language
Rust ★ 3 4mo agoExplain → -
ci-reports
Repository for various reports from pull requests
HTML ★ 3 5mo agoExplain → -
terraform-provider-prisma-postgres
Prisma Postgres Terraform Provider
Go ★ 3 6mo agoExplain → -
chat-with-policy
No description.
TypeScript ★ 3 1y agoExplain → -
prisma-atlas
A demo that shows how to use Prisma ORM's data modeling with the Atlas migration system.
HCL ★ 3 1y agoExplain → -
documenso ⑂ ▣
The Open Source DocuSign Alternative.
TypeScript ★ 3 1y agoExplain → -
cal.com ⑂
Scheduling infrastructure for absolutely everyone.
★ 3 1y agoExplain → -
accelerate-nextjs-starter
No description.
TypeScript ★ 3 2y agoExplain → -
deployment-example-cloudflare-workers
Cloudflare workers deployment example
TypeScript ★ 3 3y agoExplain → -
milestone-check ⑂
Github application which verifies whether a milestone has been set on a PR or not
JavaScript ★ 3 5y agoExplain → -
db-push-non-idempotent-schemas ▣
Collection of schemas that don't roundtrip if you db pull, then db push
Nix ★ 2 4y agoExplain → -
prisma-plugin
No description.
★ 2 26d agoExplain → -
todo-app
Next.js + Better-Auth + Prisma Postgres
TypeScript ★ 2 10mo agoExplain → -
read-replicas-demo
No description.
TypeScript ★ 2 2y agoExplain → -
prisma-mongodb-advanced-workshop ⑂
No description.
TypeScript ★ 2 2y agoExplain → -
prisma-accelerate-supabase-edge-functions
No description.
TypeScript ★ 2 2y agoExplain → -
tracing-tutorial-prisma
Reference code for "Get Started With Tracing Using OpenTelemetry and Prisma Tracing".
TypeScript ★ 2 3y agoExplain → -
deployment-example-lambda-serverless-framework
No description.
TypeScript ★ 2 3y agoExplain → -
fullstack-prisma-turso-embedded-db
No description.
TypeScript ★ 2 2y agoExplain → -
prisma-indexes
No description.
TypeScript ★ 2 2y agoExplain → -
benching_setup ▣
No description.
TypeScript ★ 2 5y agoExplain → -
graphql-parser ⑂
A graphql query language and schema definition language parser and formatter for rust
Rust ★ 2 6y agoExplain → -
mrkdwn
No description.
TypeScript ★ 1 10d agoExplain → -
mongo-rust-driver ⑂ ▣
MongoDB Rust Driver with some additional fixes
Rust ★ 1 1y agoExplain → -
docs-legacy ⑂
📚 Prisma Documentation
★ 1 5mo agoExplain → -
migrate-from-drizzle-to-prisma
No description.
TypeScript ★ 1 2y agoExplain → -
minimal-generator ⑂ ▣
A minimal Prisma generator package
JavaScript ★ 1 9mo agoExplain → -
prisma-fundamentals ▣
An Instruqt lab to introduce students to the Prisma Schema
Shell ★ 1 2y agoExplain → -
security-rules-feedback
No description.
★ 1 1y agoExplain → -
prisma-workshop-2021-de ⑂
No description.
TypeScript ★ 1 2y agoExplain → -
prisma-postgres-quickstart
Sample project to get started with Prisma Postgres
TypeScript ★ 1 1y agoExplain → -
test-nuxt-prisma-module
No description.
Vue ★ 1 2y agoExplain → -
prisma-engines-builds ▣
Builds of prisma-engines
★ 1 2y agoExplain → -
accelerate-hackernews
A project to show accelerate cache invalidation that is a clone of hacker news
TypeScript ★ 1 1y agoExplain → -
barrel ⑂
🛢 A database schema migration builder for Rust
★ 1 5y agoExplain → -
action-node-cache-dependencies ▣
Install and cache node modules.
★ 1 3y agoExplain → -
auto ⑂ ▣
No description.
★ 1 5y agoExplain → -
test-vercel-access ▣
No description.
HTML ★ 1 3y agoExplain → -
google-cloud-pubsub-rs ⑂ ▣
Google Cloud PubSub client for Rust
Rust ★ 1 3y agoExplain → -
discord-open-source ⑂ ▣
List of open source communities living on Discord
JavaScript ★ 1 3y agoExplain → -
planetscale-proxy ⑂
Proxy to access vitess through planetscale API
Go ★ 1 2y agoExplain → -
fullstack-prisma-turso
No description.
TypeScript ★ 1 2y agoExplain → -
orm-cloudflare-worker-list-binaries
A cloudflare worker to list the contents of the `prisma-builds` bucket
TypeScript ★ 1 3y agoExplain → -
prisma-client-lib-go ▣
Runtime of Prisma (v1) Go Client.
Go ★ 1 4y agoExplain → -
redwood-workshop ⑂
Repo for the Prisma Workshop at RedwoodJS Conf 2023
JavaScript ★ 1 2y agoExplain → -
fivetran-npm-downloads
No description.
Python ★ 1 3y agoExplain → -
docs-tools
No description.
Python ★ 1 2y agoExplain → -
ci-info ⑂ ▣
Get details about the current Continuous Integration environment
JavaScript ★ 1 6y agoExplain → -
pdp-spike-nextjs-opentelemetry ▣
No description.
TypeScript ★ 1 5y agoExplain → -
compute-e2e-multi-app
Compute build-pipeline e2e fixture: multi-app prisma.compute.json fan-out (see pdp-control-plane services/build-runner/scripts/e2e)
TypeScript ★ 0 5d agoExplain → -
compute-e2e-happy
No description.
TypeScript ★ 0 7d agoExplain → -
middleware-examples
No description.
TypeScript ★ 0 4y agoExplain → -
accelerated-fs
No description.
TypeScript ★ 0 1mo agoExplain → -
compute-e2e-missing-entrypoint
No description.
★ 0 1mo agoExplain → -
compute-e2e-bad-lockfile
No description.
JavaScript ★ 0 1mo agoExplain → -
nextjs-commerce ⑂
Next.js Commerce
★ 0 5mo agoExplain → -
dub ⑂
The modern link attribution platform. Loved by world-class marketing teams like Framer, Perplexity, Superhuman, Twilio, Buffer and more.
★ 0 2mo agoExplain → -
claude-plugin
No description.
★ 0 1mo agoExplain → -
codex-plugin
No description.
★ 0 2mo agoExplain → -
compute-deploy
No description.
TypeScript ★ 0 13d agoExplain → -
prisma-ai-test
No description.
Shell ★ 0 3mo agoExplain → -
migrate-from-mongoose-to-prisma
No description.
JavaScript ★ 0 2y agoExplain → -
cuid-rust ⑂
Rust implemention of CUID unique IDs
Rust ★ 0 3mo agoExplain → -
optimize-feedback ▣
Community feedback on Prisma Optimize
★ 0 2y agoExplain → -
postgres-pglite ⑂
Postgres fork used for PGlite
★ 0 5mo agoExplain → -
pglite ⑂
Embeddable Postgres with real-time, reactive bindings.
★ 0 5mo agoExplain → -
vercel-deployment-claim-demo
No description.
TypeScript ★ 0 7mo agoExplain → -
inf-terraform-provider-ukc ⑂
Fork of Terraform Provider for Unikraft Cloud
★ 0 8mo agoExplain → -
type-benchmarks
No description.
TypeScript ★ 0 10mo agoExplain → -
prisma-postgres-github-actions-example
No description.
TypeScript ★ 0 1y agoExplain → -
qa-query-compiler-turso
Example usage of the `queryCompiler` preview feature. Manual quality assurance on Stackblitz for Prisma v6.9.0
TypeScript ★ 0 1y agoExplain → -
nextjs-security-rules-demo
No description.
TypeScript ★ 0 1y agoExplain → -
pulse-chat-mono ▣
No description.
TypeScript ★ 0 3y agoExplain → -
sanity-portable-table ⑂
A table plugin for Sanity that supports Portable Text cells
★ 0 2y agoExplain → -
reproduction-cf-do-fetch-broken ▣
No description.
TypeScript ★ 0 2y agoExplain → -
gcp-bigquery-client ⑂ ▣
GCP BigQuery Client (Rust)
Rust ★ 0 3y agoExplain → -
sst ⑂ ▣
Build modern full-stack applications on AWS
★ 0 2y agoExplain → -
issue-15395-reproduction ⑂ ▣
No description.
★ 0 3y agoExplain → -
helix ⑂ ▣
A post-modern modal text editor.
★ 0 3y agoExplain → -
repro-remix-tree-shaking ▣
No description.
TypeScript ★ 0 3y agoExplain → -
repro-prisma-client-cloud-flare-pages ▣
No description.
TypeScript ★ 0 3y agoExplain → -
tree-sitter-prisma ⑂ ▣
Prisma tree sitter grammar
★ 0 3y agoExplain → -
reproduction-7085-eeve ⑂ ▣
No description.
JavaScript ★ 0 3y agoExplain → -
reproduction-16897 ▣
No description.
★ 0 3y agoExplain → -
prisma-remix-cloudflare-demo ⑂ ▣
quick demo repo to show off prisma's wasm engine compatibility issues on remix with cloudflare
★ 0 2y agoExplain → -
orm-labels ▣
Only used for labels, which we copy to new repositories.
★ 0 3y agoExplain → -
next-hmr-demo ▣
No description.
CSS ★ 0 2y agoExplain → -
demo-upgrade-prisma-4 ▣
No description.
★ 0 4y agoExplain → -
20567 ⑂ ▣
No description.
TypeScript ★ 0 3y agoExplain → -
prismo ⑂ ▣
A bot designed for the Prisma Discord server meant for simplifying the process of submitting questions.
★ 0 2y agoExplain → -
slackin-extended ⑂ ▣
Public Slack organizations made easy (extended fork of rauchg/slackin)
JavaScript ★ 0 3y agoExplain → -
bridg-ea-quickstart
A quick-start template using Prisma Bridg.
TypeScript ★ 0 2y agoExplain → -
minimal-mongodb-binary ▣
For issue reproduction
Rust ★ 0 4y agoExplain → -
language-tools-gitpod
No description.
Shell ★ 0 3y agoExplain → -
netlify-prisma-accelerate
No description.
TypeScript ★ 0 2y agoExplain → -
deployment-example-azure-functions
Azure Functions deployment example
TypeScript ★ 0 3y agoExplain → -
prisma-client-generated-cache-repro ⑂
(e.g on Vercel and Netlify) see automated for Vercel in https://github.com/prisma/ecosystem-tests/pull/3421
JavaScript ★ 0 3y agoExplain → -
build-cli ▣
Prisma 1 Build CLI
Ruby ★ 0 7y agoExplain →
No repos match these filters.