Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 

Repository files navigation

Prisma ORM Notes

This repository contains my personal notes on Prisma ORM, a modern and type-safe Object-Relational Mapper (ORM) for Node.js and TypeScript.

What’s Inside

  • Overview of Prisma and its components
  • Commands and usage examples
  • Schema modeling tips
  • Migrations and Prisma Client
  • Best practices and tips
  • Reference links and learning resources

About Prisma

Prisma simplifies database access by:

  • Providing a declarative data model
  • Generating type-safe database clients
  • Supporting migrations and introspection
  • Offering a visual data browser (Prisma Studio)

Official site: prisma.io

Quick Start (for reference)

npm install @prisma/client
npx prisma init
npx prisma migrate dev --name init
npx prisma generate
npx prisma studio

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors