Skip to content

Latest commit

 

History

History

prisma

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

prisma

What is prisma?

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

    • Prisma Client: Auto-generated and type-safe query builder for Node.js & TypeScript
    • Prisma Migrate: Migration system
    • Prisma Studio: GUI to view and edit data in your database

Installation

Using npm:

$ npm i prisma

Features

  • Major Features
    • Thinking in objects instead of mapping relational data
    • Queries not classes to avoid complex model objects
    • Single source of truth for database and application models
    • Healthy constraints that prevent common pitfalls and anti-patterns
    • An abstraction that makes the right thing easy ("pit of success")
    • Type-safe database queries that can be validated at compile time
    • Less boilerplate so developers can focus on the important parts of their app
    • Auto-completion in code editors instead of needing to look up documentation
    • Learn more

Thank You!!