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

@grooveshop/recommendations-react

v1.0.0

Published

React components for GrooveShop product recommendations

Readme

@grooveshop/recommendations-react

React components for GrooveShop product recommendations.

Installation

npm install @grooveshop/recommendations-react

Quick Start

Basic Usage

import { RecommendationCarousel } from '@grooveshop/recommendations-react';

function ProductPage({ productId }: { productId: string }) {
  return (
    <RecommendationCarousel
      apiKey="pk_live_abc123"
      tenantId="my-store"
      productId={productId}
      count={5}
    />
  );
}

With Provider (Recommended)

import { RecommendationProvider, RecommendationCarousel } from '@grooveshop/recommendations-react';

function App() {
  return (
    <RecommendationProvider
      config={{
        apiKey: 'pk_live_abc123',
        tenantId: 'my-store',
        apiUrl: 'https://api.grooveshop.com',
        debug: false,
      }}
    >
      <ProductPage />
    </RecommendationProvider>
  );
}

function ProductPage() {
  return (
    <div>
      <h1>Similar Products</h1>
      <RecommendationCarousel
        productId="123"
        type="similar"
        count={5}
      />
    </div>
  );
}

Components

RecommendationCarousel

Horizontal scrollable carousel layout.

<RecommendationCarousel
  apiKey="pk_live_abc123"
  tenantId="my-store"
  productId="123"
  count={5}
  type="similar"
  onProductClick={(product) => console.log('Clicked:', product)}
/>

RecommendationGrid

Responsive grid layout.

<RecommendationGrid
  apiKey="pk_live_abc123"
  tenantId="my-store"
  type="trending"
  count={8}
/>

RecommendationList

Vertical list layout.

<RecommendationList
  apiKey="pk_live_abc123"
  tenantId="my-store"
  productId="123"
  type="complement"
  count={4}
/>

Props

All components accept the following props:

| Prop | Type | Required | Default | Description | |------|------|----------|---------|-------------| | apiKey | string | Yes | - | Your GrooveShop API key | | tenantId | string | Yes | - | Your store identifier | | apiUrl | string | No | - | API endpoint URL | | productId | string | No | - | Source product ID | | count | number | No | 5 | Number of recommendations | | type | RecommendationType | No | 'similar' | Type of recommendations | | theme | 'light' | 'dark' | 'minimal' | No | 'light' | Visual theme | | realTime | boolean | No | false | Enable real-time social proof | | userId | string | No | - | User ID for personalization | | testId | string | No | - | A/B test ID | | onProductClick | (product) => void | No | - | Click event handler | | onProductImpression | (products) => void | No | - | Impression event handler | | className | string | No | '' | Additional CSS class | | style | CSSProperties | No | {} | Inline styles |

Recommendation Types

  • similar - Products similar to the current product
  • trending - Trending products
  • bundle - Frequently bought together
  • personalized - Personalized for the user
  • complement - Complementary products
  • recently-viewed - Recently viewed by user
  • auto - Auto-detect based on context

Event Handling

Product Click

<RecommendationCarousel
  {...props}
  onProductClick={(product) => {
    console.log('User clicked product:', product.entity_id);
    // Navigate to product page, add to cart, etc.
  }}
/>

Product Impressions

<RecommendationCarousel
  {...props}
  onProductImpression={(products) => {
    console.log('Widget displayed', products.length, 'products');
    // Track impression in your analytics
  }}
/>

Custom Event Listeners

import { useRecommendations } from '@grooveshop/recommendations-react';

function MyComponent() {
  const { on } = useRecommendations();

  useEffect(() => {
    // Listen to all recommendation events
    const unsubscribe = on('*', (event) => {
      console.log('Event:', event.type, event);
    });

    return unsubscribe;
  }, [on]);

  return <div>...</div>;
}

Real-time Social Proof

Enable live badges showing product activity:

<RecommendationCarousel
  {...props}
  realTime={true}
/>

Shows badges like:

  • "5 viewing now"
  • "3 sold today"
  • "2 in carts"

A/B Testing

Configure A/B tests in the provider:

<RecommendationProvider
  config={{
    apiKey: 'pk_live_abc123',
    tenantId: 'my-store',
    abTests: {
      'homepage-layout': {
        variants: [
          { name: 'carousel', weight: 50, config: { layout: 'carousel' } },
          { name: 'grid', weight: 50, config: { layout: 'grid' } },
        ],
      },
    },
  }}
>
  <RecommendationCarousel testId="homepage-layout" />
</RecommendationProvider>

Theming

Using CSS Variables

:root {
  --gs-primary-color: #007bff;
  --gs-font-family: 'Inter', sans-serif;
  --gs-border-radius: 12px;
}

Custom Styles

<RecommendationCarousel
  {...props}
  className="my-custom-class"
  style={{ marginTop: '2rem' }}
/>

TypeScript

Full TypeScript support with type definitions included.

import type {
  Product,
  RecommendationType,
  RecommendationProps,
} from '@grooveshop/recommendations-react';

License

MIT