v0.2.1
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-flowUsage
Add to your prisma/schema.prisma:
generator flow {
provider = "next-prisma-flow"
output = "./generated/flow"
models = ["User", "Todo", "Category"]
}Then run:
npx prisma generateSee the README for complete documentation and examples.