CraftzCode
Integrating hono.js with tRPC in Next.js: Routing and Context Considerations
So the best option is to not use
Hono.js
as an adapter/server, so that the prefetch from the server component to the client component—explained by Sir Code with Antonio in his YouTube clone—can be fully utilized. Or is it still possible to use prefetch while using Hono
as an adapter/server?21 replies
Integrating hono.js with tRPC in Next.js: Routing and Context Considerations
Well, if I were to use Hono as a server, I wouldn't need to use Next.js' server component, because what would be the point of the Hono server if I also use Next.js' server component am I correct sir?
21 replies
Integrating hono.js with tRPC in Next.js: Routing and Context Considerations
thank you so much for the help 🙂 it a huge fore me, I've been waiting for a 2 days to answer my questions in discussion on the
github
both tRPC
and hono
, I also posted to in stackoverflow
but no one can help me.
I find tech stack template in github
for this combination but it used the tanstack-start
instead of next
so I tried it on next
I will consider it to remove the hono
but for now I will keep it for my reference/template for this kind of tech stack combination.
One last question if you don't mind, what is the best approach regarding context—should I use the tRPC
context or the Hono.js
context?21 replies
Integrating hono.js with tRPC in Next.js: Routing and Context Considerations
I used
Hono.js
as a web server because I wanted to achieve the light and ultrafast web server capabilities of Hono.js
.
I got confused with the documentation for tRPC
and Hono.js
because, with tRPC
, they also have their own API route setup in Next.js specifically, the route at src/app/api/trpc/[trpc]/route
, and Hono.js
also has its own API route setup in Next.js
namely, the route at src/app/api/[[...route]]/route.ts
. So, I don’t know which one I should follow to use the 3rd party library created by Hono.js
, which is @hono/trpc-server
.21 replies