tRPC

T

tRPC

Join the community to ask questions about tRPC and get answers from other members.

Join

can i send data from client to server in subscriptions

Hi, as in the topic, is it possible to do bidirectional websockets transmission, i am trying to build a chat and cannot figure out how to send messages from my nextjs frontend using wsLink to trpc standalone backend (not in nextjs api routes). Many thanks

subscription: Cannot use 'in' operator to search for 'enabled' in undefined

``` 2025-04-02T14:22:10Z app[17814621c56328] fra [info] ⨯ TypeError: Cannot use 'in' operator to search for 'enabled' in undefined 2025-04-02T14:22:10Z app[17814621c56328] fra [info] at IndexPage (src/app/app/[appId]/setup/page.tsx:86:24) 2025-04-02T14:22:10Z app[17814621c56328] fra [info] 84 | const trpc = useTRPC(); 2025-04-02T14:22:10Z app[17814621c56328] fra [info] 85 | const { data } = useSubscription(...

Turborepo internal package exported procedure context type `any`

I am working on moving our trpc API to a separate internal package away from our next.js app, but running into an issue where the ctx type is any in the Next.js app. Even though the type is shown when I hover the procedure itself. Any idea what this could be?
No description

Finding the Unused TRPC procedure...

after a big rewrite of the frontend I'm not using all the old mutations / queries so now I have them there and I need a way to identify the unused ones ? the manual Ctr+Shif+F is taking tooo much time HHhH :feelsadman:...

Migrating pages router to app router

hey there. long time user, first time caller. I'm trying to migrate my pages router nextjs app to next app router. I'm struggling to understand some core trpc + ssr principles I think. afaik, my pages router pages were rendered server side if possible, and all useQueries came preloaded with data on render. Now I'm following along the docs here and really struggling to make things work that way. It seems I need to manually specify what components are server and which are client side. Let's start with my landing page. it has hooks like usePathname, useSearchParams, so I don't think I'm able to make the page be a server component. Hooks aren't allowed there. I'm also wrapping all my pages in a layout which includes a sidebar that highlights the active link, all of this sounds to me like I can't use it server side. I also use an animated component that uses useEffect and useState, again, no server component afaik. ...
No description

Prefetching with tRPC: Using hono.js/Express adapter and Next.js

If I use Hono.js or Express as the adapter for tRPC and my frontend is Next.js, will I be able to utilize the prefetch features referenced in Set up with React Server Components

Types question

I'm slowly migrating an old graphql based project over to trpc v11, using @trpc/tanstack-react-query, and rather liking how it all works, but I'm having some difficulties typing some of the code when I try and wrap some of the queries. I have simple code like this: ```ts...

What is the best approach when using monorepo with tTPC

What is the best approach when configuring tRPC inside of monorepo? I would like it to be used in Next.js, I create an internal library for tRPC example packages/api so I can call it anywhere in monorepo, now I would like to know where exactly is the best place for the client.tsx and for the tRPC caller for Server Components which is the server.tsx can I place it also inside of the internal library of tRPC or I will place it inside of Next.js which is on apps/web.

Troubleshooting createTRPCOptionsProxy with Server Components and Context Passing

How does createTRPCOptionsProxy work in server components? I'm creating a context that passes the hono context to createTRPCContext in order to obtain the HTTP headers, since I need to forward those headers to the better-auth API to get the session I use @hono/trpc-server which created by the hono so I can use hono as adapter of trpc. ```...
No description

Integrating hono.js with tRPC in Next.js: Routing and Context Considerations

I want to combine Hono.js with tRPC. I followed the guide on the 3rd party middleware made by hono for a tRPC server, and now I have set up the hono tRPC server 3rd party middleware similar to the code below: ```ts import { Hono } from 'hono' import { trpcServer } from '@hono/trpc-server' // Deno 'npm:@hono/trpc-server'...
Solution:
Option 1. N -> H -> T (this is to use src/app/api/[[...route]) as the example below Option 2. N -> T - You use the tprc adapter for nextjs directly and src/app/api/trpc/[trpc]/route I think you might missunderstanding what's the purpose goal of HonoJS, vs nextjs api/server and how they interact with TRPC...

httpStreaming with NonJsonSerializable

i have a question lets say i have this link setup to make httpStreaming work and also make NonJsonSerializable stuff work (formdata) if in the mutation i return json it works perfectly but if i return an stream i get Cannot use stream-like response in non-streaming request which makes sense but is there any way of making it work?...
No description

server calls alongside new react integration

Started migrating to new react integration. Before that I used to have a react client and a caller for server side calls. Was following create-t3-turbo on how they migrated and it seems like they dont have a caller anymore. Was wondering if i should just continue using the caller for the server side calls or there's a new alternative that i dont know of

swagger to trpc-like interface generator?

I have a backend which exposes a fully detailed swagger json file. And I want to have an auto generated api client with an interface like trpc. I managed to do it using swagger-typescript-api and custom templates, but wondered if anyone did it already or if there is any open source project that does almost the same thing, so I can get better ideas for implementation. Thanks...

makeQueryClient missing default arguments

following documentation, the dehydrate & hydrate arguments are not valid when using makeQueryClient
No description

Sending FormData does not work at all

https://github.com/trpc/trpc/blob/main/examples/minimal-content-types I have this exact same setup with tRPC but does not work. Server just says "Input not instance of FormData", looking at the network tab it just sends a json payload
Solution:
Got it working. Had to use splitLink with a condition for isNonJsonSerializable

How would I go about passing an image to the server using tRPC?

I'm reviewing all my options here but I'm currently thinking of uploading the file and then the server uses the URL of the image to read. I only need the image temporarily to read, so it just wouldn't make sense for me to upload it and just leave it in an s3 or r2 bucket.....

How to forward headers (cookies) w/ Tanstack Start

I followed the example repository to get up and running, but I can't seem to get cookie-based authentication to work during the ssr pass. Just doesn't look like the headers are being forwarded on to the fetch call. I tried attaching ...(typeof window === 'undefined' && headers: getHeaders()}) to the createTRPCClient call in router.tsx which works in dev and fails in build (probably because that function isn't supposed to b...
Solution:
After playing around some more, I was able to simplify it to ```ts const getIncomingHeaders = createIsomorphicFn() .client(() => ({})) .server(() => getHeaders());...

A simple example of using SSE and subscriptions

Hello! Congrats on launching v11 🚀 I'm having a hard time to understand subscriptions](https://trpc.io/docs/server/subscriptions), specially the full stack example which is already a bit complex. Just wondering if there is a simple example somewhere without using React for example and just a basic subscription when a todo item is added for example. Also, is it just me or the onComplete, onData, etc options in a plain subscription got removed and is only available in useSubscription()? The types from v10 have it https://github.com/trpc/trpc/blob/3bc06d055d3b860d978e9c465bce56fdcf95b71f/packages/client/src/internals/TRPCUntypedClient.ts#L32 Thanks!...

tRPC v11 FileLike

Hey there, using stable version of v11 now and following the example (https://github.com/trpc/trpc/blob/main/examples/minimal-content-types/server/index.ts) throws some Typescript errors regarding the FileLike interface Exported variable 'router' has or is using name 'FileLike' from external module "/node_modules/@trpc/server/dist/unstable-core-do-not-import/http/contentTypeParsers" but cannot be named. Node version: v20.17 using pnpm...
Next