Deprecated, please use zod-prisma-types instead
A custom prisma generator that creates Zod schemas from your Prisma model.
Initially this generated was created by Carter Grimmeisen, but unfortunately only support for Prisma 3. I got tired of having update Zod Schema manually. This repo provides generating prisma schema model and keep the simplicity.
- Support Prisma 4.*
- For Internal Use Only
To get a local copy up and running follow these simple steps.
-
Ensure your tsconfig.json enables the compiler's strict mode. Zod requires it and so do we, you will experience TS errors without strict mode enabled
-
Add zod-prisma as a dev dependency
pnpm add -D @fortezhuo/zod-prisma
-
Add the zod-prisma generator to your schema.prisma
generator zod { provider = "zod-prisma" output = "./zod" // (default) the directory where generated zod schemas will be saved relationModel = true // (default) Create and export both plain and related models. // relationModel = "default" // Do not export model without relations. // relationModel = false // Do not generate related model modelCase = "PascalCase" // (default) Output models using pascal case (ex. UserModel, PostModel) // modelCase = "camelCase" // Output models using camel case (ex. userModel, postModel) modelSuffix = "_model" // (default) Suffix to apply to your prisma models when naming Zod schemas imports = null // (default) will import the referenced file in generated schemas to be used via imports.someExportedVariable // https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-by-null-values prismaJsonNullability = true // (default) uses prisma's scheme for JSON field nullability // prismaJsonNullability = false // allows null assignment to optional JSON fields }
-
Run
npx prisma generate
orpnpm dlx prisma generate
to generate your zod schemas -
Import the generated schemas form your selected output location
Distributed under the MIT License. See LICENSE
for more information.
Carter Grimmeisen for awesome Prisma Generator https://github.com/CarterGrimmeisen/zod-prisma