Replies: 2 comments
-
Based on my understanding, I would say the main fundamental differences between FeTS and tRPC are:
|
Beta Was this translation helpful? Give feedback.
-
I actually use both. trpc-openapi lets me publish certain trpc procedures as a rest endpiont (while still using them in the standard trpc/tanstack query way in the frontend of that app), then I can use the generated openapi spec to generate a typesafe client with fets client on a completely uncoupled app with a bit of copy paste. I explored doing fully fets but we really love using trpc when things are tightly coupled. We could also have moved things to a monorepo and used trpc everywhere, but then we still probably need to publish an endpoint when we have something that HAS to be decoupled fully, like work by an external integrator, code in another language, or future public api use. |
Beta Was this translation helpful? Give feedback.
-
How would it differ from https://trpc.io/?
Beta Was this translation helpful? Give feedback.
All reactions