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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@hellotrust/react

v0.1.1

Published

React SDK for displaying HelloTrust testimonials

Readme

@hellotrust/react

React SDK for displaying HelloTrust testimonials on your website.

Installation

npm install @hellotrust/react
# or
yarn add @hellotrust/react

Usage

Option 1: Using the Hook (Recommended)

import { useTestimonials } from '@hellotrust/react';

function TestimonialList() {
  const { testimonials, loading, error } = useTestimonials('your-showcase-id');

  if (loading) return <div>Loading testimonials...</div>;
  if (error) return <div>Error loading testimonials</div>;

  return (
    <div>
      {testimonials.map((testimonial) => (
        <div key={testimonial.id}>
          <p>{testimonial.final_text}</p>
          <p>- {testimonial.provider_name || testimonial.provider_email}</p>
        </div>
      ))}
    </div>
  );
}

Option 2: Using the Component with Render Prop

import { Testimonials } from '@hellotrust/react';

function TestimonialList() {
  return (
    <Testimonials showcaseId="your-showcase-id">
      {({ testimonials, loading, error }) => {
        if (loading) return <div>Loading testimonials...</div>;
        if (error) return <div>Error loading testimonials</div>;

        return (
          <div>
            {testimonials.map((testimonial) => (
              <div key={testimonial.id}>
                <p>{testimonial.final_text}</p>
                <p>- {testimonial.provider_name || testimonial.provider_email}</p>
              </div>
            ))}
          </div>
        );
      }}
    </Testimonials>
  );
}

TypeScript

The package includes full TypeScript type definitions:

import type { Testimonial, UseTestimonialsResult } from '@hellotrust/react';

interface Testimonial {
  id: string;
  final_text: string;
  provider_email: string;
  provider_name?: string;
  created_at: string;
}

interface UseTestimonialsResult {
  testimonials: Testimonial[];
  loading: boolean;
  error: Error | null;
}

Getting Your Showcase ID

  1. Log in to your HelloTrust dashboard
  2. Navigate to Settings → Showcases
  3. Click on the showcase you want to display
  4. Copy the showcase ID from the page

API

useTestimonials(showcaseId: string)

React hook that fetches testimonials from a showcase.

Parameters:

  • showcaseId (string, required): The ID of the showcase to fetch testimonials from

Returns: UseTestimonialsResult

  • testimonials (Testimonial[]): Array of testimonials in the showcase order
  • loading (boolean): True while fetching testimonials
  • error (Error | null): Error object if request failed, null otherwise

<Testimonials />

React component using the render prop pattern.

Props:

  • showcaseId (string, required): The ID of the showcase to fetch testimonials from
  • children (function, required): Render function that receives UseTestimonialsResult

Development vs Production

The SDK can be built in two modes:

Development (localhost):

yarn build:dev

Builds the SDK to connect to http://localhost:8080 for local development.

Production:

yarn build:prod

Builds the SDK to connect to https://api.hellotrust.io for production use.

The API URL is baked into the build at compile time for maximum reliability and performance.

License

MIT