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

@dylandepass/helix-product-pipeline

v2.10.1

Published

Helix Product Pipeline

Readme

Helix Product Pipeline

A platform-neutral, shared rendering library for transforming product catalog data into multiple output formats for e-commerce experiences on Adobe's Edge Delivery.

Status

codecov GitHub Actions Workflow Status GitHub license GitHub issues semantic-release

Overview

Helix Product Pipeline is the shared rendering engine that powers both helix-product-pipeline-worker and helix-product-pipeline-service (forthcoming). It fetches product data from the Product Bus and renders it into various formats optimized for search engines and user experiences.

Design Goals

  • Platform Neutral: Not using node or browser specific modules or dependencies.
  • Minimal Dependencies: Near-zero runtime dependencies (uses conditional imports for platform-specific modules like crypto)
  • Extension Interfaces: Provides abstractions for platform-specific operations (S3/R2 storage)

Features

Multiple Pipeline Types

  • HTML Pipeline: Renders complete product pages with SEO-optimized HTML and JSON-LD structured data
  • JSON Pipeline: Returns raw product data in JSON format
  • Media Pipeline: Serves and proxies product images and media assets
  • Index Pipeline: Converts product indexes to spreadsheet format
  • Sitemap Pipeline: Generates XML sitemaps for products
  • Merchant Feed Pipeline: Creates Google Shopping merchant feeds

HTML Pipeline Capabilities

  • Fetches product data from Product Bus storage
  • Optionally merges with authored content from Edge Delivery Services
  • Extracts metadata from authored content head and merges into product head
  • Generates responsive picture elements with multiple breakpoints (600px, 750px/2000px)
  • Creates schema.org JSON-LD structured data for rich search results
  • Adds heading IDs for navigation and anchor links
  • Implements CDN-aware caching with surrogate keys for targeted invalidation
  • Handles product variants with proper data attributes for client-side JavaScript

Architecture

The HTML pipeline executes these processing steps in sequence:

  1. init-config - Initialize pipeline configuration (hosts, CDN settings)
  2. fetch-productbus - Load product data from Product Bus storage
  3. fetch-404 - Handle 404 cases with fallback content
  4. make-html - Create initial HTML structure
  5. render-head - Generate HTML head with meta tags
  6. fetch-edge-product - Optionally fetch authored content from Edge Delivery
  7. extract-authored-metadata - Extract metadata from authored content and merge into product head
  8. render-body - Render product content, images, and variants
  9. render-jsonld - Generate schema.org JSON-LD structured data
  10. add-heading-ids - Add IDs to headings for anchor navigation
  11. create-pictures - Generate responsive picture elements
  12. stringify-response - Serialize to HTML string
  13. set-cache-headers - Set CDN and browser cache headers with surrogate keys

CDN Support

Automatically detects and optimizes for major CDN providers:

  • Cloudflare
  • Fastly
  • Akamai
  • CloudFront

Contributing

Contributions are welcome! Please see CONTRIBUTING.md for guidelines.

Before submitting a pull request:

  1. Run npm test to ensure all tests pass
  2. Run npm run lint to check code style
  3. Maintain test coverage above 85%
  4. Follow conventional commit message format

License

This project is licensed under the Apache License 2.0. See LICENSE.txt for details.

Support

Changelog

See CHANGELOG.md for version history and release notes.