= TRPC
{wiki=TRPC}
TRPC stands for "TypeScript Remote Procedure Call." It is a framework designed to simplify the development of type-safe APIs using TypeScript, allowing developers to build full-stack applications with ease. With TRPC, you can create TypeScript-based endpoints that can be called directly from the front end, ensuring that both the client and server share the same type definitions. This helps in reducing runtime errors and improving developer experience by providing autocompletion and type checking.
Back to article page