Prisma
banner
prisma.io
Prisma
@prisma.io
From idea to scale. Simplified. Modern serverless db, ORM & more.

npx prisma@latest init --db

📚 http://pris.ly/t/get-started
💬 http://pris.ly/t/discord
7,130,000 weekly downloads.

Honestly grateful to everyone using it, sharing feedback, and building with it. Thank you ❤️
January 30, 2026 at 1:56 PM
One command. Production-ready Postgres in your terminal.

No sign-up, no config, no waiting. You get a connection string, 24 hours to build, and the option to claim it for free if you want to keep it.
January 30, 2026 at 9:58 AM
We might’ve been cooking something special.

Coming soon.
January 29, 2026 at 5:03 PM
We get this question a lot in our Discord 👇

What’s the recommended approach for Prisma ORM generated files?
January 29, 2026 at 12:01 PM
GLM-4.7-Flash just dropped.

30B MoE running ~43 tokens/sec on an Apple M5.

Local LLMs are getting very real.

We shared a full walkthrough for building a local AI SaaS 👇
pris.ly/y/typefully...
Build a Tweet SaaS with Next.js, Prisma Postgres, and Ollama | Prisma Documentation
A complete vibe coding tutorial: build a tweet polishing app from scratch using Next.js, Prisma ORM, Prisma Postgres, UploadThing, and a local LLM with Ollama.
pris.ly
January 28, 2026 at 2:01 PM
You're probably fetching more data than you need.

Prisma ORM includes all fields by default.

Switching to select only what you need, can lead to major improvements in high traffic applications.
January 28, 2026 at 10:00 AM
wait...what ?
January 27, 2026 at 5:02 PM
Slow queries aren’t always obvious.

Prisma Optimize surfaces real query latency, variance, and hidden costs like cold connections. It runs in dev so you can catch issues early before they hit prod.

See what's slowing things down, and why.
pris.ly/docs/optimize
January 27, 2026 at 2:00 PM
We've seen our users struggle with setting up Prisma ORM and @supabase.com!

So we made a video about it, check it out👇
pris.ly/y/prisma-su...
How to use Supabase with Prisma ORM
pris.ly
January 27, 2026 at 10:00 AM
Connection pooling on Neon doesn’t have to be confusing.
We put together a complete Prisma walkthrough 👇
pris.ly/d/neon-pooling
Set up PostgreSQL on Neon with Prisma Accelerate's Connection Pool | Prisma Documentation
Learn how to set up PostgreSQL on Neon with Prisma Accelerate's Connection Pool
pris.ly
January 26, 2026 at 10:02 AM
We're looking at ways to improve our official Discord server for the community.

What would make it a better space for you?

- Different channels or categories?
- Specific event formats?
- Bot functionalities?

We'd appreciate your thoughts. 🤗
January 23, 2026 at 2:04 PM
Introducing the Prisma Postgres Terraform Provider 🎉

→ Manage projects, databases & connections as code
→ Direct Postgres access out of the box
→ Multi-region deployments (US, EU, Asia)
→ Connection strings as secure Terraform outputs

`terraform apply` and you're live.
January 23, 2026 at 10:00 AM
🐃 Prefer working with Yaak? You can use the Prisma Postgres Management API with just a service token.

- Generate a token in Prisma Console
- Add it to your headers
- Make secure API calls instantly

Full instructions here👇
pris.ly/mgmt-api-yaak
January 22, 2026 at 10:02 AM
Prisma ORM 7.3.0 is out 🚀

✅ New compilerBuild option: fast (default) or small
⚡ Raw queries can bypass compilation for less overhead
🛠️ Adapter + reliability fixes (MsSQL, better-sqlite3, mapped enums)
🔒 BigInt precision preserved in relationJoins JSON
January 21, 2026 at 5:02 PM
Bun is fast. So is Prisma ORM.

Learn how to use them together👇
pris.ly/guide/bun
How to use Prisma ORM and Prisma Postgres with Bun | Prisma Documentation
Learn how to use Prisma ORM in a Bun application with Prisma Postgres
pris.ly
January 21, 2026 at 10:11 AM
Looping over create() looks harmless. But each call sends a separate query.

Local test inserting 50 records:
- create() in a loop → 803ms
- createMany() → 129ms

~6x faster with one line change.

Use createMany() for batch inserts.
January 20, 2026 at 5:00 PM
Want to see what Prisma is sending to your database and how long it takes?

You can log the raw SQL and execution time with a few lines:
January 20, 2026 at 1:57 PM
Did you know that Prisma ORM lets you control how relations are loaded?

Use relationLoadStrategy: 'join' | 'query':
- join runs a single DB query with joins
- query runs multiple simpler queries

Check it out👇
pris.ly/d/relation-...
January 20, 2026 at 10:00 AM
🎉 1 billion+ queries on Prisma Postgres

Thanks to every developer, team, and company building with Prisma Postgres, shipping real apps, and trusting us with real workloads.

Thanks for being part of the journey 💙
January 19, 2026 at 9:58 AM
We’re excited to welcome Luiz Martins to the team.

Luiz joins us as a Senior Software Engineer, bringing ~20 years of experience across finance, SaaS, & most recently, AWS. His expertise in scaling complex systems is a massive win for our infra as we continue to grow.

Welcome, Luiz! 🚀
January 16, 2026 at 10:04 AM
Shadow database does two things:

1. Detects drift (did someone manually change the dev database?)
2. Validates new migrations (will this cause data loss?)

Only after passing both checks does the migration touch your actual data.

Automatic, temporary, and essential.
January 15, 2026 at 10:00 AM
Client Extensions are often overlooked in Prisma ORM, but allow you to extend Prisma Client to include any custom logic you might want to add.

For example, want to count the total number of queries in your app?
Client Extensions have you covered!
January 14, 2026 at 1:57 PM
🟠 Want to use the Prisma Postgres Management API in Postman?

We wrote a guide to help you get started with OAuth2, access tokens, and your first request.

✅ Pre-filled callback
✅ Auth flow handled in Postman
✅ POST /projects ready to test

Full guide here👇
pris.ly/mgmt-api-po...
January 14, 2026 at 10:00 AM
🌙 If Insomnia is your API client of choice, we’ve got you covered.

This guide shows how to set up the Prisma Postgres Management API using Insomnia’s built-in OAuth2 support.

- Configure auth and scopes
- Fetch tokens in-app
- Send project creation requests

Check it out👇
pris.ly/mgmt-api-in...
January 13, 2026 at 10:04 AM
What if you could build a full SaaS app, like Typefully, but keep it 100% local?
Well...there you go 👇
pris.ly/y/typefully...
Build a Tweet SaaS with Next.js, Prisma Postgres, and Ollama | Prisma Documentation
A complete vibe coding tutorial: build a tweet polishing app from scratch using Next.js, Prisma ORM, Prisma Postgres, UploadThing, and a local LLM with Ollama.
pris.ly
January 12, 2026 at 9:57 AM