prisma-orm
Installation
SKILL.md
Prisma ORM Best Practices (2025-2026)
This skill provides guidelines and snippets for using Prisma ORM effectively in Shopify Apps built with Remix.
1. Setup & Configuration
Installation
npm install prisma --save-dev
npm install @prisma/client
npx prisma init
Recommended schema.prisma Config
Use the postgresql provider (standard for Shopify apps) or mysql. Enable improving-tracing and other preview features if needed, but stick to stable for production.