Builder's DayOctober 26 · SFGet tickets
Prisma Stack

The connected TypeScript stack

An application runtime, a Postgres database, and a type-safe data layer that arrive already connected. Fewer dependencies, less configuration, one command to start.

$ npm create prisma@next
The stack, simplified

Prisma plus your framework is the whole stack

Hosting, runtime, data access, and database ship as one connected platform, so the only decision left open is your framework. The alternative is stitching those layers together from four vendors, where every seam adds configuration and something new to break.

One connected platform. The framework on top is your call.

Any framework

Your application

The one layer Prisma has no opinion about, on purpose. Every major frontend and backend framework runs on the stack unchanged, with the same runtime, database, and deploy underneath.

  • Next.js, TanStack Start, Hono, NestJS, and more
  • Change framework without touching the data layer
  • Plain TypeScript projects, no proprietary app model
See the framework guides
How it works

From empty folder to production

One command scaffolds the app, the database, the typed client, and the deploy target. Step through what happens next.

From empty folder to productionStep 1 of 6
  1. Your application
  2. Prisma ORM
  3. Prisma Postgres
  4. Prisma Compute + Bun
$ npm create prisma@next
Framework · Hono
ORM · Prisma Next
Database · Prisma Postgres
Generating the typed client
Provisioning Prisma Postgres
Configuring Compute deploys
cd my-app && npm run dev
One command creates the application, provisions a Prisma Postgres database, sets up Prisma Next, and configures the project for Prisma Compute. Nothing to wire together by hand.

Stop configuring. Start shipping.

One command gives you a running application, a Prisma Postgres database, a typed Prisma Next client, and a deploy target on Prisma Compute. Connected from the first minute.

$ npm create prisma@next