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-vue

v1.0.0

Published

Vue 3 components for GrooveShop product recommendations

Downloads

10

Readme

@grooveshop/recommendations-vue

Vue 3 components for GrooveShop product recommendations.

Installation

npm install @grooveshop/recommendations-vue

Quick Start

Basic Usage

<script setup lang="ts">
import { RecommendationCarousel } from '@grooveshop/recommendations-vue';

const productId = '123';
</script>

<template>
  <RecommendationCarousel
    api-key="pk_live_abc123"
    tenant-id="my-store"
    :product-id="productId"
    :count="5"
  />
</template>

With Composable

<script setup lang="ts">
import { useRecommendations, RecommendationCarousel } from '@grooveshop/recommendations-vue';

const { on, isInitialized } = useRecommendations({
  apiKey: 'pk_live_abc123',
  tenantId: 'my-store',
  debug: false,
});

// Listen to events
const unsubscribe = on('click', (event) => {
  console.log('Product clicked:', event.productId);
});
</script>

<template>
  <RecommendationCarousel
    product-id="123"
    type="similar"
    :count="5"
  />
</template>

Components

RecommendationCarousel

Horizontal scrollable carousel layout.

<template>
  <RecommendationCarousel
    api-key="pk_live_abc123"
    tenant-id="my-store"
    product-id="123"
    :count="5"
    type="similar"
    @product-click="handleClick"
  />
</template>

<script setup>
function handleClick(product) {
  console.log('Clicked:', product);
}
</script>

RecommendationGrid

Responsive grid layout.

<template>
  <RecommendationGrid
    api-key="pk_live_abc123"
    tenant-id="my-store"
    type="trending"
    :count="8"
  />
</template>

RecommendationList

Vertical list layout.

<template>
  <RecommendationList
    api-key="pk_live_abc123"
    tenant-id="my-store"
    product-id="123"
    type="complement"
    :count="4"
  />
</template>

Props

All components accept the following props:

| Prop | Type | Required | Default | Description | |------|------|----------|---------|-------------| | api-key | string | Yes | - | Your GrooveShop API key | | tenant-id | string | Yes | - | Your store identifier | | api-url | string | No | - | API endpoint URL | | product-id | 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 | | real-time | boolean | No | false | Enable real-time social proof | | user-id | string | No | - | User ID for personalization | | test-id | string | No | - | A/B test ID | | className | string | No | '' | Additional CSS class | | style | object | No | {} | Inline styles |

Events

@product-click

Emitted when a product is clicked.

<template>
  <RecommendationCarousel
    v-bind="props"
    @product-click="handleClick"
  />
</template>

<script setup>
function handleClick(product) {
  console.log('User clicked product:', product.entity_id);
  // Navigate, add to cart, etc.
}
</script>

@product-impression

Emitted when products are displayed.

<template>
  <RecommendationCarousel
    v-bind="props"
    @product-impression="handleImpression"
  />
</template>

<script setup>
function handleImpression(products) {
  console.log('Widget displayed', products.length, 'products');
}
</script>

Composable

useRecommendations

Access the widget instance and listen to events.

<script setup>
import { useRecommendations } from '@grooveshop/recommendations-vue';
import { onMounted } from 'vue';

const { on, isInitialized } = useRecommendations({
  apiKey: 'pk_live_abc123',
  tenantId: 'my-store',
});

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

  // Cleanup on unmount
  return unsubscribe;
});
</script>

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

Real-time Social Proof

<template>
  <RecommendationCarousel
    v-bind="props"
    :real-time="true"
  />
</template>

Shows live badges:

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

Theming

Using CSS Variables

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

Custom Styles

<template>
  <RecommendationCarousel
    v-bind="props"
    class-name="my-custom-class"
    :style="{ marginTop: '2rem' }"
  />
</template>

TypeScript

Full TypeScript support with type definitions included.

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

License

MIT