npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

trpc-formated-error

v0.3.4

Published

Trpc adapter for Remix with api handler and server side call.

Downloads

33

Readme

trpc-formated-error

This package provides utility functions for handling and formatting TRPC errors in both client-side and server-side contexts. It extends the functionality of the @trpc/client and @trpc/server packages to provide a more structured and consistent error handling approach.

Functions

createTrpcFormatedError(props: TrpcFormatedError): TRPCError

Creates a new TRPCError instance with formatted properties.

  • Parameters:
    • props: TrpcFormatedError - An object containing the properties for the formatted error.
  • Returns: A new TRPCError instance.
  • Usage:
    const formattedError = createTrpcFormatedError({
      code: 'NOT_FOUND',
      title: 'Resource not found',
      // other TrpcFormatedError properties
    });

getClientFormatedError(error: unknown): TrpcFormatedError

Extracts the formatted error from a client-side error object.

  • Parameters:
    • error: unknown - The error object to extract the formatted error from.
  • Returns: A TrpcFormatedError object.
  • Usage:
    try {
      // TRPC client call
    } catch (error) {
      const formattedError = getClientFormatedError(error);
      console.log(formattedError);
    }

trpcErrorFormatter({ shape, error }: { shape: DefaultErrorShape; error: TRPCError }): Object

Formats a TRPC error for client-side consumption.

  • Parameters:
    • shape: DefaultErrorShape - The default shape of the TRPC error.
    • error: TRPCError - The TRPC error instance.
  • Returns: An object containing the formatted error information.
  • Usage:
    const formattedError = trpcErrorFormatter({
      shape: defaultErrorShape,
      error: trpcError,
    });

formatServerCallError(error: TRPCError): Promise<TrpcFormatedError>

Formats a server-side TRPC error.

  • Parameters:
    • error: TRPCError - The TRPC error to format.
  • Returns: A promise that resolves to a TrpcFormatedError object.
  • Usage:
    try {
      // Server-side TRPC operation
    } catch (error) {
      if (error instanceof TRPCError) {
        const formattedError = await formatServerCallError(error);
        console.log(formattedError);
      }
    }

Types

The package uses the following types:

  • TRPCClientError from @trpc/client
  • DefaultErrorShape and TRPCError from @trpc/server
  • TrpcFormatedError (custom type defined in ./types)

Helper Functions

The package also includes a helper function:

  • getSafeCause from ./safe-cause - Used internally to safely extract the cause from an error object.

Usage

To use this package in your TRPC-based application:

  1. Install the package:

    npm install trpc-formated-error
  2. Import the necessary functions in your TRPC server and client code:

    import {
      createTrpcFormatedError,
      getClientFormatedError,
      trpcErrorFormatter,
      formatServerCallError,
    } from 'trpc-formated-error';
  3. Use the functions as needed in your error handling logic for both client-side and server-side TRPC operations.

This package helps in standardizing error handling and formatting across your TRPC application, making it easier to manage and display errors consistently.