Nx for Code Gen (for Prisma)

One of the more annoying parts of code generators like Prisma, is that you need to run them - obviously. My silly little meat brain is just not capable of remembering what to run in which order before I see the glaring compiler errors in my terminal. But we are developers, so let’s automate it! In this blog post I’ll describe how to use Nx’s dependency system to auto-run any code generation job before building or serving a dev server. ...

March 8, 2025 · 5 min · Simon Hayden

Nestjs + Prisma + Proxy = ♥️

NestJS has first-class support for TypeORM. And while there is some documentation how to use Prisma in NestJS, it basically stops at providing the PrismaClient as a service. I go one step further and want to show you how to inject single tables via repositories instead. Here is the result: ...

February 15, 2025 · 10 min · Simon Hayden