prisma/prisma
原文摘要
Next-generation ORM for Node.js & TypeScript | PostgreSQL, MySQL, MariaDB, SQL Server, SQLite, MongoDB and CockroachDB Prisma Quickstart • Website • Docs • Examples • Blog • Discord • Twitter • Youtube What is Prisma? Prisma ORM is a next-generation ORM that consists of these tools: Prisma Client : Auto-generated and type-safe query builder for Node.js & TypeScript Prisma Migrate : Declarative data modeling & migration system Prisma Studio : GUI to view and edit data in your database Prisma Client can be used in any Node.js or TypeScript backend application (including serverless applications and microservices). This can be a REST API , a GraphQL API , a gRPC API, or anything else that needs a database. If you need a database to use with Prisma ORM, check out Prisma Postgres or if you are looking for our MCP Server, head here . Getting started Quickstart (5min) The fastest way to get started with Prisma is by following the quickstart guides. You can choose either of two databases: Prisma Postgres SQLite Bring your own database If you already have your own database, you can follow these guides: Add Prisma to an existing project Set up a new project with Prisma from scratch How Prisma…