Skip to content

Generate testing ui for tRPC procedures in seconds. Fork of trpc-panel

Notifications You must be signed in to change notification settings

aidansunbury/trpc-ui

Β 
Β 

Repository files navigation

tRPC.ui()

Probably the easiest and cheapest way to build a testing UI and documentation for your tRPC v11.0 endpoints. tRPC ui automatically generates a UI for manually testing your tRPC backend with 0 overhead:

Screenshot 2022-12-08 at 7 24 02 PM

trpc panel moves as fast as your trpc backend with minimal effort.

Check out our demo app

Fork Notice

This is a fork of the original tRPC panel project, which is now unmaintained. The original author deserves credit for the vast majority of the work done on this project.

Features

  • πŸš€ Automatically inspect your tRPC router and recursively generate a typesafe UI
  • πŸ•’ Zero overhead
    • No output schemas (procedure return types can be inferred as nature intended)
    • New procedures will be added to your UI as you create them in your backend
    • No compilation required, works with any backend
  • πŸ“„ Document your procedures and input parameters with minimal effort and markdown support
  • 🐦 Supports nested routers, and nested input objects. The structure of the UI maps one-to-one to your API's routers and procedures.
  • 🧭 SideNav and VSCode-like procedure / router search to quickly find what you're looking for
  • ✨ Transform data with built in superjson support.

Quick Start

Install as a dev dependency with your preferred package manager:

npm install -D trpc-ui
yarn add -D trpc-ui
pnpm install -D trpc-ui
bun add -d trpc-ui

render your panel and return it from your backend as a text response (express example). You can also ensure that the panel is only available in development using dynamic imports and checking the NODE_ENV:

app.use("/panel", (_, res) => {
  if (process.env.NODE_ENV !== "development") {
    return res.status(404).send("Not Found");
  }

  // Dynamically import renderTrpcPanel only in development
  const { renderTrpcPanel } = await import("trpc-ui");
  
  return res.send(
    renderTrpcPanel(myTrpcRouter, {
      url: "http://localhost:4000/trpc", // Base url of your trpc server
      meta: {
        title: "My Backend Title",
        description:
          "This is a description of my API, which supports [markdown](https://en.wikipedia.org/wiki/Markdown).",
      },
    })
  );
});

trpc-ui just renders as a string, so it can be used with any backend.

To document your entire backend, you can pass in a metadata object with a title and description. To document individual procedures, see the documenting procedures.

Make sure you specify whether or not you are using superjson as a data transformer.

NextJs App Router / create-t3-app example

Create a route handler somewhere like src/app/api/panel/route.ts

import { NextResponse } from "next/server";
import { appRouter } from "~/server/api/root";

export async function GET() {
  if (process.env.NODE_ENV !== "development") {
    return new NextResponse("Not Found", { status: 404 });
  }

  const { renderTrpcPanel } = await import("trpc-ui");

  return new NextResponse(
    renderTrpcPanel(appRouter, {
      url: "/api/trpc", // Default trpc route in nextjs
      transformer: "superjson", // Enabled by default with create-t3-app
    }),
    {
      status: 200,
      headers: [["Content-Type", "text/html"] as [string, string]],
    }
  );
}

Then we can visit the url http://localhost:3000/api/panel to use the panel.

NextJS Pages Router example

Create an api route somewhere like src/pages/api/panel.ts and send a text response:

import type { NextApiRequest, NextApiResponse } from "next";
import { appRouter } from "../../server/api/root";

export default async function handler(_: NextApiRequest, res: NextApiResponse) {
  if (process.env.NODE_ENV !== "development") {
    return res.status(404).send("Not Found");
  }

  const { renderTrpcPanel } = await import("trpc-ui");
  res.status(200).send(
    renderTrpcPanel(appRouter, {
      url: "/api/trpc",
      transformer: "superjson",
    })
  );
}

Documenting Procedures

trpc-ui supports documenting procedures.

Documentation is opt-in, meaning you only need to set it up if you want to use it. When docs are included for your trpc procedure, a "Docs" section will appear in your procedure:

Documentation Example

Procedure Descriptions

trpc-ui supports documenting procedures via trpc meta. First setup your trpc instance to be typed with TRPCPanelMeta:

import { initTRPC } from "@trpc/server";
import { TRPCPanelMeta } from "trpc-ui";

const t = initTRPC.meta<TRPCPanelMeta>().create();

Then in your routers you can provide a description to the meta:

export const appRouter = t.router({
  sayHello: t.procedure
    .meta({ /* πŸ‘‰ */ description: "This shows in the panel." })
    .input(z.object({ name: z.string() }))
    .query(({ input }) => {
      return { greeting: `Hello ${input.name}!` };
    });
});

Markdown Support

Most descriptions don't need more than basic text, but descriptions for procedures and procedure descriptions can render markdown. This is most often useful for adding links within descriptions, but all markdown is supported thanks to react-markdown.

.meta({ /* πŸ‘‰ */ description: "# H1 heading\nSome normal, or maybe **bold** text below, and a [link](https://trpc.io/docs) to something important" })

Input Parameter Descriptions

trpc-ui supports documenting parameters via zod's .describe() method. This allows developers to quickly write documentation as they're writing schemas:

export const appRouter = t.router({
  sayHello: t.procedure
    .input(z.object({
        name: z.string().describe("The name to say hello too.")
    }))
    .query(({ input }) => {
      return { greeting: `Hello ${input.name}!` };
    });
});

Whatever you pass to describe() will appear in the docs section. Any input fields without a description will not appear in the docs section.

Data Transformers

Trpc panel supports superjson, just pass it into the transformer option:

app.use("/panel", (_, res) => {
  return res.send(
    renderTrpcPanel(myTrpcRouter, {
      url: "http://localhost:4000/trpc",
      transformer: "superjson",
    })
  );
});

Submitting superjson only data types like Date or Map are not yet supported (they will be soon), but superjson data types returned from the server will be rendered correctly.

Contributing

trpc-ui welcomes and encourages open source contributions. Please see our contributing guide for information on how to develop locally.

Comparisons

trpc-openapi

trpc-openapi is designed for producing a REST API for external consumption from your trpc routers, not quickly testing your backed. If you do not care about exposing your API outside of your application, the additional overhead required to use trpc-openapi is not worth the effort. trpc-ui can be used with trpc-openapi, but the two libraries serve different purposes.

trpc-playground

trpc-playground is a great tool for testing your queries, but it requires writing code in the browser. trpc-ui automatically generates intuitive typesafe forms for your procedures, allowing you to run tests without writing any code.

Limitations

Currently, tRPC panel only works with zod input schemas. There is no current plan to support other input validators, as zod remains the most popular choice for tRPC developers. However, if you would like to see support for another input validator, feel free to open an issue, and look into how we could reduce the amount of validator specific code that needs to be maintained by using something like standard-schema.

Supported zod types

The following are supported

  • Array
  • BigInt
  • Boolean
  • Branded
  • Default
  • DiscriminatedUnion
  • Effects
  • Enum
  • Literal
  • NativeEnum
  • Nullable
  • Null
  • Nullish
  • Number
  • Object
  • Optional
  • Promise
  • String
  • Undefined
  • Any (Via json mode)

We would like to add the following types:

  • Union
  • Tuple
  • Record
  • Never
  • Map (superjson only)
  • Set (superjson only)
  • Date (superjson only)

About

Generate testing ui for tRPC procedures in seconds. Fork of trpc-panel

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 95.4%
  • JavaScript 4.0%
  • Other 0.6%