glossary2 min read

Prisma Explained

Prisma is a TypeScript ORM with auto-generated types and visual studio.

Prisma is a TypeScript-first ORM with three components: Prisma Client (auto-generated, type-safe query builder), Prisma Migrate (database migration system), and Prisma Studio (visual database browser). Define your schema in schema.prisma, run prisma generate, and get fully typed database queries. Supports PostgreSQL, MySQL, SQLite, MongoDB, and SQL Server.

Try these tools