illustration for Build a Backend with Prisma in a TypeScript Node Project

Build a Backend with Prisma in a TypeScript Node Project

Instructor

Ryan Chenkie
18m
Star icon$$$
Star icon$$$
Star icon$$$
Star icon$$$
Star icon$$$
4.7
337
people completed
Bookmark
Download
RSS

Prisma is an open-source ORM. It consists of the following parts:

  • Prisma Client: Auto-generated and type-safe query builder
  • Prisma Migrate: 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.

In this course, you will learn how to initialize Prisma in a TypeScript Node project, use Prisma Client to create and find records, use Express to create data dynamically, and more!