Is it possible to use tRPC with Deno over Websockets only?
I guess this is NodeJS: import ws from 'ws';
and apply WSSHandler requires it as in the example here:
https://trpc.io/docs/server/websockets
I was wondering if there is a way to run it with Deno (not in compatibility mode because it's not recommended for production).
and apply WSSHandler requires it as in the example here:
https://trpc.io/docs/server/websockets
I was wondering if there is a way to run it with Deno (not in compatibility mode because it's not recommended for production).
You can use WebSockets for all or some of the communication with your server, see wsLink for how to set it up on the client.