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

testimo-react

v1.0.14

Published

A modern, customizable testimonial collection and display component library for SaaS apps, built with React, Tailwind CSS, and ShadCN UI.

Readme

Project Title

A brief description of what this project does and who it's for

Testimo React

A modern, customizable testimonial collection and display component library for SaaS apps, built with React, Tailwind CSS, and ShadCN UI.
Easily integrate video testimonials, customer feedback, and social proof into your product.

NPM Version
License
Issues

🔗 Website: testimo-love.vercel.app


🚀 Features

  • 🎥 Video + text testimonials support
  • 🎨 Styled with Tailwind CSS and ShadCN UI
  • ⚡ Multiple layouts: Masonry, Scroll, Carousel, List
  • 🧩 Theming support: Light, Dark, Gradient, Minimal
  • 🔗 Fetch testimonials dynamically using a collection ID
  • 📱 Responsive and mobile-friendly


⚠️ Important Notes

  • This package is designed only for React and Next.js applications.
  • To use this library:
    1. Go to testimo-love.vercel.app
    2. Create an account
    3. Go to your Dashboard
    4. Create a Collection
    5. Share that collection with your users and copy its Collection ID
    6. Use this collectionId in your project to fetch and display testimonials

Installation

npm install testimo-react@latest
# or
yarn add testimo-react@latest
# or
pnpm add testimo-react@latest

Usage // with testimo-love collection id

import {testimonials} from "testimo-react"

<testimonials
  collectionId="collectionId"
  theme="light"
  variant="masonry"
/>

Usage // with manual data

import {testimonials, DATA_TYPE} from "testimo-react"

const testimonialsData: DATA_TYPE[] = [
{
content: "This library made embedding testimonials super easy 🚀",
giverName: "John Doe",
giverImage: "https://example.com/john.jpg
",
type: "TEXT",
stars: 5,
email: "[email protected]
",
role: "Product Manager",
company: "TechCorp",
socialLink: "https://linkedin.com/in/johndoe
",
videoUrl: undefined
},
{
content: "The carousel layout looks amazing on our landing page ✨",
giverName: "Sarah Lee",
giverImage: "https://example.com/sarah.jpg
",
type: "VIDEO",
stars: 4,
email: "[email protected]
",
role: "Marketing Lead",
company: "CreativeHub",
socialLink: "https://twitter.com/sarahlee
",
videoUrl: "https://youtube.com/watch?v=abcd1234
"
},
{
content: "Clean, minimal, and customizable — exactly what I needed ❤️",
giverName: "Alex Smith",
giverImage: "https://example.com/alex.jpg
",
type: "TEXT",
stars: 5,
email: "[email protected]
",
role: "Software Engineer",
company: "DevSolutions",
socialLink: "https://github.com/alexsmith
",
videoUrl: undefined
}
];

<testimonials
  data={testimonialsData}
  theme="light"
  variant="masonry"
/>

⚠️ Note: you wil get collectionIdfrom https://testimo-love.vercel.app/dashboard

⚠️ Passing collectionId or data will control which testimonials are shown (if both are passed, data takes priority.).

Props

| Prop | Type | Description | Default | |---------------|----------------------------------------------------------------------|--------------------------------------------------|------------ | collectionId| string | Fetch testimonials dynamically from Testimo Cloud | -| |data | DataType[] | Pass an array of testimonials manually|- | theme | "light" \| "dark" \| "gradient \| "minimal" |UI theme style | "light" | | variant | "masonry" \| "scroll" \| "carousel" \| "list" | Layout style for testimonials | "masonry" | | className | string | Custom CSS classes for wrapper | -|