Documentation reference generator for Prisma Schema
npm install prisma-docs-generatorAutomatically generate a reference from your Prisma Schema. This package contains a prisma generator so reference will automatically update everytime you will run prisma generate
1. Install this package using:
``shell`
npm install -D prisma-docs-generator
2. Add the generator to the schema
`prisma`
generator docs {
provider = "node node_modules/prisma-docs-generator"
}
3. Run npx prisma generate to trigger the generator. This will create a docs folder in prisma/docsnpx prisma-docs-generator serve
4. Serve the docs using
You can specify the out of the docs using the output property
`prisma`
generator docs {
provider = "node node_modules/prisma-docs-generator"
output = "../../docs"
}
You can specify whether relation fields are shown or not.
Default value is true.
`prisma`
generator docs {
provider = "node node_modules/prisma-docs-generator"
includeRelationFields = false
}
This package also ships with a CLI which is used to serve the docs right now. It has the following subcommands:
Serves the static html which the generator generated. It reads the output path from the prisma schema or it will use the default.
Use --port or -p` to change the port the express server uses.
---
MIT Harshit Pant
(This is not an official Prisma project. It is personally maintained by me )