I'm having trouble running `npx prisma generate` o...
# orm-help
r
I'm having trouble running
npx prisma generate
on a stackblitz repo that contains a prisma schema. Is there another way to run prisma's generator command in the browser? 🤔 Context: I want to generate a DBML schema with this stackblitz via the community generator prisma-dbml-generator Error:
> Downloading Prisma engines for Node-API for debian-openssl-1.1.x [] 0%
<- it's stuck here
✅ 1
d
Prisma doesn’t’ operate on front-end environments - it is purely a node js/backend system. If StackBlitz is operating as a React host, its likely not using the same sort of environments that Prisma is set up for.
a
Hey Richard 👋, Even though Stackblitz can run Node via WebContainers, they do not support running native binaries, which Prisma depends on.
r
Thanks, @Austin. I didn't now that native binaries aren't supported because of security concerns but it does make sense of course.