How to share Hono RPC client type with frontend package?

We have a Hono backend application using Prisma ORM. One day our frontend application added the backend package as a dependency to use Hono RPC. However, this led to the following error since PrismaClient only works in a Node.js runtime:
"PrismaClient" is not exported by "../../packages/db/prisma-client/index-browser.js", imported by "../server/src/db.ts".
"PrismaClient" is not exported by "../../packages/db/prisma-client/index-browser.js", imported by "../server/src/db.ts".
This happens because the frontend app has a direct dependency on the backend app. Is there a best practice for sharing only the Hono RPC client types with another package?
5 Replies
Arjix
Arjix4w ago
assuming the frontend has tree shaking, (if it is using vite, it is on by default) then it can add the backend as a devDependency, and it should only use type imports preferably, the backend should export the type alternatively, if you are fine having a build artifact, you can compile .d.ts files and give them to the frontend
Arjix
Arjix4w ago
TSConfig Reference - Docs on every TSConfig option
From allowJs to useDefineForClassFields the TSConfig reference includes information about all of the active compiler flags setting up a TypeScript project.
Arjix
Arjix4w ago
GitHub
GitHub - ArjixWasTaken/hono-monorepo-example
Contribute to ArjixWasTaken/hono-monorepo-example development by creating an account on GitHub.
Arjix
Arjix4w ago
since I couldn't find a satisfactory one online will keep expanding on it
kota65535
kota65535OP3w ago
My bad, it is because I mistakenly have my frontend package import directly from the db package using Prisma. Thank you!

Did you find this page helpful?