A lightweight package that generates an ERD from a prisma schema.
Install the package as a dev dependency:
npm install -D prisma-erd
# OR
yarn add -D prisma-erd
# OR
pnpm add -D prisma-erd
Run a single command to create an HTML file containing a graph of your schema:
npx prisma-erd <input file path> <optional output file path>
# OR
yarn exec prisma-erd <input file path> <optional output file path>
# OR
pnpm exec prisma-erd <input file path> <optional output file path>
Example:
npx prisma-erd ./prisma/schema.prisma
- Install packages via pnpm
pnpm i
- Check package.json for scripts, such as
pnpm build:install
to build and globally install the package on your machine