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

@relewise/create-relewise-learning-example

v1.0.1

Published

CLI tool to scaffold new Relewise learning projects with TypeScript, examples, and AI instructions

Readme

Create Relewise Learning Example

A CLI tool for quick scaffolding of Relewise learning projects with a preconfigured Node.js + TypeScript setup.

✨ Features

  • TypeScript (with strict settings)
  • ESLint + Prettier preconfigured (with custom formatting rules)
  • Relewise SDK (@relewise/client, @relewise/integrations)
  • .vscode launch configuration with MCP server integration
  • Comprehensive examples/ folder with search, recommendations, import, historical data import, and tracking
  • Configuration management with src/config/relewiseConfig.ts
  • Type definitions and utilities for external data integration
  • Example docs/ folder for internal documentation
  • Ready-to-use src/ folder with utilities and starter code
  • QUICKSTART.md - Complete step-by-step tutorial
  • Git initialization (optional)
  • Automatic dependency installation

🚀 Usage

Option 1: Run with npx (Recommended)

npx @relewise/create-relewise-learning-example

Option 2: Run directly from GitHub

npx github:Relewise/adhoc-relewise-examples

📋 Requirements

  • Node.js 16 or higher
  • npm or yarn

🛠️ CLI Options

# Show help
npx @relewise/create-relewise-learning-example --help

# Show version
npx @relewise/create-relewise-learning-example --version

You will be prompted for:

  1. Project name – The folder name for the new project.
  2. Description – Used in package.json.
  3. Git initialization – Whether to automatically run git init.

📋 Required Relewise Credentials

Before running examples, you'll need:

  • Dataset ID - Your Relewise dataset identifier
  • API Key - Must have Read & Write permissions for:
    • Product search and recommendations
    • User tracking and behavioral data
    • Product import/export operations
  • Server URL - Use sandbox for testing: https://sandbox-api.relewise.com

💡 Tip: Start with the sandbox environment for development. You can find your credentials in the Relewise dashboard under Settings > API Keys.

For complete setup instructions, see the QUICKSTART.md guide included with every generated project.


📂 Project Structure

When generated, a new project will look like this:

MY-RELEWISE-EXAMPLES/
├── .github/
│   └── copilot-instructions.md
├── .vscode/
│   ├── launch.json
│   ├── mcp.json
│   └── settings.json
├── docs/
│   └── relewise-response-patterns.md
├── product_data/
│   └── product_data_example.json
├── src/
│   ├── config/
│   │   └── relewiseConfig.ts
│   ├── examples/
│   │   ├── import/
│   │   │   ├── productImportExample.ts
│   │   │   └── historicalDataImportExample.ts
│   │   ├── recommendations/
│   │   │   ├── popularProductsExample.ts
│   │   │   └── purchasedWithProductExample.ts
│   │   ├── search/
│   │   │   ├── categoryBasedSearchExample.ts
│   │   │   ├── cdpPersonalizedSearchExample.ts
│   │   │   ├── searchCategoryExample.ts
│   │   │   └── termBasedSearchExample.ts
│   │   ├── tracking/
│   │   │   └── basicTrackingExample.ts
│   │   └── README.md
│   ├── types/
│   │   ├── externalData.ts
│   │   └── interfaces.ts
│   ├── utils/
│   │   ├── externalDataServices.ts
│   │   └── relewiseTypeGuards.ts
│   └── index.ts
├── .env.local
├── .gitignore
├── .prettierrc
├── eslint.config.js
├── package-lock.json
├── package.json
├── QUICKSTART.md
├── README.md
└── tsconfig.json

🛠️ How It Works

The CLI (bin/index.js):

  1. Prompts for project details using inquirer.
  2. Copies the template/ directory to the target folder.
  3. Removes any .git folder from the template (to start fresh).
  4. Updates package.json with the project name and description.
  5. Runs npm install to install all dependencies.
  6. Initializes Git if requested.

✨ Example

$ npx @relewise/create-relewise-learning-example

🚀 Welcome to the Relewise examples and AI instructions setup!

? Project name: my-relewise-learning
? Project description: My Relewise learning and experimentation project
? Initialize a new Git repository? (Y/n) Y

📂 Creating project in /path/to/my-relewise-learning
🧹 Removed template .git folder
📦 Installing dependencies (this may take a minute)...
🔧 Initializing Git repository...

✅ Project scaffolded successfully!

Next steps:
  cd my-relewise-learning
  
  # 1. Configure your environment variables
  # Edit .env with your Relewise credentials (already created from template)
  nano .env
  
  # 2. Follow the quickstart tutorial
  cat QUICKSTART.md
  
  # 3. Run examples
  npm run dev termBasedSearchExample "headphones"

🧩 Template Project

The template includes:

  • TypeScript (tsconfig.json with strict settings and ES modules)
  • Linting & Formatting (eslint, prettier with custom rules)
  • Relewise SDK preinstalled with latest versions
  • VS Code Integration:
    • Debug configurations (.vscode/launch.json)
    • MCP server for Relewise documentation (.vscode/mcp.json)
    • Workspace settings (.vscode/settings.json)
  • Comprehensive Examples:
    • Search (basic, category, personalized with CDP)
    • Recommendations (popular products, purchased-with-product)
    • Product import with multilingual support
    • Historical data import with proper timeline preservation
    • User tracking implementation
  • Configuration Management:
    • Centralized Relewise configuration (src/config/relewiseConfig.ts)
    • Environment variable validation
    • Pre-configured clients (searcher, recommender, integrator)
  • Type Safety:
    • Custom type definitions (src/types/)
    • Type guards for external data (src/utils/relewiseTypeGuards.ts)
  • Documentation:
    • Complete quickstart tutorial (QUICKSTART.md)
    • Copilot instructions for AI assistance (.github/copilot-instructions.md)
    • Example documentation patterns (docs/)
  • Real Product Data: Sample dataset for immediate testing (product_data/)

🛡 Requirements

  • Node.js 18+
  • npm 9+ (or npx support)

⚙️ Development (for the CLI itself)

If you are modifying this CLI:

git clone [email protected]:Relewise/adhoc-relewise-examples.git
cd adhoc-relewise-examples
npm install
npm link  # to test locally
create-relewise-learning-example my-local-test

🎯 Available Examples

The generated project includes comprehensive examples that you can run immediately:

Search Examples

npm run dev termBasedSearchExample "headphones"
npm run dev categoryBasedSearchExample "5"  # Hi-Fi category from sample data
npm run dev searchCategoryExample "5"  # Hi-Fi category from sample data
npm run dev cdpPersonalizedSearchExample user_1 "headphones"

Recommendation Examples

npm run dev popularProductsExample
npm run dev purchasedWithProductExample "00198c54-6c62-4e08-be40-a539963985d0"

Note: The purchasedWithProductExample returns recommendations with rank scores. Lower rank values (e.g., 1, 2, 3) indicate stronger relevance - products ranked 1 are most commonly purchased together with the specified product. Results are sorted in ascending order by rank for optimal relevance.

Import & Tracking Examples

npm run dev productImportExample
npm run dev historicalDataImportExample
npm run dev basicTrackingExample

Each example is fully documented and uses real product data from the included product_data_example.json file.


📚 Getting Started Guide

The generated project includes a comprehensive QUICKSTART.md that provides:

  • Step-by-step setup instructions with environment configuration
  • Implementation walkthrough following official Relewise documentation
  • Hands-on examples you can run immediately
  • Best practices for production implementation
  • Troubleshooting guide for common issues

Key Features:

  • Environment setup with .env.local template
  • SDK verification process for reliable integrations
  • Real product data examples with multilingual support
  • Historical data import with timeline preservation for personalization
  • CDP integration patterns for personalized experiences

VS Code Integration:

  • MCP Server: Direct access to Relewise documentation within VS Code
  • Debug Configurations: Pre-configured launch settings for all examples
  • AI Assistance: Copilot instructions for accurate Relewise SDK usage

📄 Product Data Structure

The product_data_example.json file contains an array of products to be used for the Product import example. Each product is structured to support multi-language, multi-market, and multi-channel contexts.

High-Level Structure

  • Identification & Metadata

    • unique_id: Unique product identifier.
    • brand: Object with id and displayName.
    • channels: Sales channels (e.g., B2C, B2B).
    • markets: Markets where the product is available (e.g., dk, gb, se).
  • Product Information

    • name and description: Arrays with localized values for multiple languages.
    • image: URL to the product image.
  • Category Information

    • mainCategory: The main category object:
      • id: Category ID.
      • name: Localized category names.
      • subCategory: Nested object with:
        • id: Subcategory ID.
        • name: Localized subcategory names.
  • Pricing & Availability

    • list_price and sales_price: Arrays of price objects (amount and currency).
    • OnSale, soldOut, lowStock: Arrays with localized boolean values.
    • availability: Localized stock availability.
    • margin: Profit margin classification (e.g., Low, Medium, High).
  • Promotion & Campaigns

    • promoted: Optional flags for promotions (localized).
    • campaignIds: Linked campaign identifiers if applicable.
  • Additional Attributes

    • daysAvailable: Number of days available (nullable).
    • salesStatus: Current sales state (nullable).

This structure provides everything required for building product search, recommendations, and merchandising features.

Example

{
  "unique_id": "12345",
  "brand": { "id": "bose", "displayName": "Bose" },
  "channels": ["B2C"],
  "markets": ["en"],
  "name": [{ "language": "en-gb", "value": "Noise cancelling headphones" }],
  "mainCategory": {
    "id": "audio",
    "name": [{ "language": "en-gb", "value": "Audio" }],
    "subCategory": {
      "id": "headphones",
      "name": [{ "language": "en-gb", "value": "Headphones" }]
    }
  },
  "sales_price": [{ "amount": 1999, "currency": "GBP" }],
  "availability": [{ "language": "en-gb", "value": 12 }],
  "margin": "High"
}