
Prisma | Instant Postgres plus an ORM for simpler db workflows
Prisma has been instrumental in building ReUI, by providing a fully abstracted database layer. It accelerated our development speed several times over, letting us focus on business logic with …
Get started with Prisma | Prisma Documentation
Set up Prisma ORM from scratch with your favorite database and learn basic workflows like data modeling, querying, and migrations. Get started with Prisma ORM and your existing database …
Models | Prisma Documentation
Learn about the concepts for building your data model with Prisma: Models, scalar types, enums, attributes, functions, IDs, default values and more.
ORM | Prisma Documentation
Prisma ORM is a Node.js and TypeScript ORM with an intuitive data model, automated migrations, type-safety, and auto-completion.
How to use Prisma ORM with Next.js
This guide shows you how to use Prisma with Next.js 15, a fullstack React framework. You'll learn how to create a Prisma Postgres instance, set up Prisma ORM with Next.js, handle migrations, …
Prisma Config reference
Prisma Config files can be named as prisma.config.* or .config/prisma.* with the extensions js, ts, mjs, cjs, mts, or cts. Other extensions are supported to ensure compatibility with different …
TypeScript & Prisma | TypeScript ORM for SQL Databases
Prisma is an ORM for Node.js and TypeScript that gives you the benefits of type-safety at zero cost by auto-generating types from your database schema. It's ideal for building reliable data …
Relational databases (TypeScript and PostgreSQL) - Prisma
Learn how to create a new Node.js or TypeScript project from scratch by connecting Prisma ORM to your database and generating a Prisma Client for database access. The following tutorial …
Quickstart with Prisma Postgres
Get started with Prisma ORM in 5 minutes. You will learn how to run migrations and send queries with a Prisma Postgres database.
How to use multiple databases in a single app - Prisma
Learn how to use multiple Prisma Clients in a single app to connect to multiple databases, handle migrations, and deploy your application to Vercel.