Skip to content

Release 0.2.5

Latest

Choose a tag to compare

@github-actions github-actions released this 16 Jun 11:13
· 6 commits to main since this release

What's Changed

Release 0.2.5 of Next Prisma Flow Generator

Features

  • πŸš€ Full-stack type-safe code generation from Prisma schema
  • ⚑ Server actions, Jotai atoms, React hooks, and API routes
  • πŸ”’ End-to-end type safety with Zod validation
  • 🎯 Smart relationship handling with circular reference prevention
  • πŸ“¦ Optimized batch operations with proper schemas

Installation

npm install next-prisma-flow
# or
yarn add next-prisma-flow
# or
pnpm add next-prisma-flow

Usage

Add to your schema.prisma:

generator flow {
  provider = "next-prisma-flow"
  output   = "./generated/flow"
  models   = ["User", "Post", "Category"]
}

Then run:

npx prisma generate

See the README for full documentation.