0.1.1 • Published 3 years ago
prisma-erd v0.1.1
prisma-erd
A lightweight package that generates an ERD from a prisma schema.
Install
Install the package as a dev dependency:
npm install -D prisma-erd
# OR
yarn add -D prisma-erd
# OR
pnpm add -D prisma-erdUsage
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.prismaDevelopment Setup
- Install packages via pnpm
pnpm i- Check package.json for scripts, such as
pnpm build:installto build and globally install the package on your machine