seanchas116 / trpc-panel

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tRPC.panel()

Probably the easiest and cheapest way to build a testing UI and documentation for your tRPC endpoints. tRPC panel 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 test app

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
  • 🐦 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 with your preferred package manager:

yarn add trpc-panel

render your panel and return it from your backend (express example):

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

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

Documenting Procedures

As of v1.1.0, trpc-panel 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-panel 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-panel";

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}!` };
    });
});

Input Parameter Descriptions

trpc-panel 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",
    })
  );
});

Limitations

Currently, tRPC panel only supports tRPC v10 and only works with zod input schemas. With it's current design it would be feasible to easily add support for other input types as well

There are no plans to support v9 or other previous tRPC versions.

Supported zod types

The following are supported

  • Array
  • BigInt
  • Boolean
  • Branded
  • Default
  • DiscriminatedUnion
  • Effects
  • Enum
  • Literal
  • Nullable
  • Null
  • Nullish
  • Number
  • Object
  • Optional
  • Promise
  • String
  • Undefined

Planning on adding additional support shortly for the following types:

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

Feature Roadmap

You can view planned features roadmap here: https://trello.com/b/nflGRDxe/trpc-panel-featues-road-map

About

License:MIT License


Languages

Language:TypeScript 94.9%Language:JavaScript 3.8%Language:CSS 0.9%Language:HTML 0.5%Language:Shell 0.0%