Skip to content

v0.2.1

Choose a tag to compare

@schobele schobele released this 05 Jun 13:10
· 26 commits to main since this release

What's New in v0.2.1

  • Enhanced form hooks - Improved form integration and validation
  • Updated documentation - Better examples and usage patterns
  • Bug fixes and improvements - Various stability enhancements

Installation

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

Usage

Add to your prisma/schema.prisma:

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

Then run:

npx prisma generate

See the README for complete documentation and examples.