Prisma is a ORM (Object-Relational Mapping) tool. It helps you interact with your database in a type-safe and developer-friendly way.
Prisma Client
Prisma Migrate
A migration tool for your database schema. It allows you to easily make and track schema changes.
Prisma Studio
A browser-based GUI interface where you can view and edit your data.
npm install prisma --save-dev
npm install @prisma/client
npx prisma init
This creates two files:
.env (for your database connection string)