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

@vendure-community/elasticsearch-plugin

v2.0.0

Published

This plugin allows your product search to be powered by either [Elasticsearch](https://github.com/elastic/elasticsearch) or [OpenSearch](https://github.com/opensearch-project/OpenSearch) — powerful open source search engines. This is a drop-in replacement

Readme

Vendure Elasticsearch / OpenSearch Plugin

This plugin allows your product search to be powered by either Elasticsearch or OpenSearch — powerful open source search engines. This is a drop-in replacement for the DefaultSearchPlugin which exposes many powerful configuration options enabling your storefront to support a wide range of use-cases such as indexing of custom properties, fine control over search index configuration, and to leverage advanced search features like spatial search.

The plugin exposes a pluggable SearchClientAdapter interface, so you pick the backend by installing exactly one of the two client libraries and passing the corresponding adapter.

Version Requirements

Vendure v3.6+ requires Elasticsearch v9.1 or newer. When using OpenSearch, the 3.x client / 3.x server line is supported.

The version of the search engine that is deployed, the version of the JavaScript client installed in your Vendure project and the version of that same client used internally by @vendure-community/elasticsearch-plugin must all match to avoid any issues. Neither client allows @latest in its public repository, so these versions must be updated regularly.

| Package | Minimum version | | ---------------------------------------- | --------------- | | @vendure/core | 3.6.0 | | @vendure-community/elasticsearch-plugin| 2.0.0 | | Elasticsearch (server + client) | 9.1.0 | | OpenSearch (server + client) | 3.0.0 |

With Elasticsearch v8+, basic authentication, SSL, and TLS are enabled by default and may result in your client and plugin not being able to connect to Elasticsearch successfully if your client is not configured appropriately. You must also set xpack.license.self_generated.type=basic if you are using the free Community Edition of Elasticsearch.

Review the Elasticsearch docker example here for development and testing without authentication and security enabled. Refer to the Elasticsearch documentation to enable authentication and security in production.

Installation

Install the plugin plus exactly one of the two search clients:

# Elasticsearch
npm install @vendure-community/elasticsearch-plugin @elastic/elasticsearch
# OpenSearch
npm install @vendure-community/elasticsearch-plugin @opensearch-project/opensearch

Both clients are declared as optional peer dependencies — only install the one you use. Make sure to remove the DefaultSearchPlugin from your VendureConfig plugins array.

Setup

Build the adapter for the backend you want to use and pass it to ElasticsearchPlugin.init().

Elasticsearch

import { ElasticsearchPlugin, createElasticsearchAdapter } from '@vendure-community/elasticsearch-plugin';

const config: VendureConfig = {
  plugins: [
    ElasticsearchPlugin.init({
      // `adapter` is a factory: the plugin invokes it once per internal
      // NestJS provider so each gets its own client / connection pool.
      adapter: () =>
        createElasticsearchAdapter({
          host: 'http://localhost',
          port: 9200,
          // Any additional @elastic/elasticsearch ClientOptions
          // (auth, tls, cloud, headers, etc.) may be provided via `clientOptions`.
          // clientOptions: { auth: { username: 'elastic', password: 'changeme' } },
        }),
      indexPrefix: 'vendure-',
    }),
  ],
};

OpenSearch

import { ElasticsearchPlugin, createOpenSearchAdapter } from '@vendure-community/elasticsearch-plugin';

const config: VendureConfig = {
  plugins: [
    ElasticsearchPlugin.init({
      adapter: () =>
        createOpenSearchAdapter({
          host: 'http://localhost',
          port: 9200,
          // Any additional @opensearch-project/opensearch ClientOptions
          // (auth, ssl, awssigv4, headers, etc.) may be provided via `clientOptions`.
        }),
      indexPrefix: 'vendure-',
    }),
  ],
};

Custom adapter

SearchClientAdapter is a public TypeScript interface. You can implement your own adapter (e.g. to use a managed/hosted service with a custom SDK, or to inject a test double) and pass it directly:

import { ElasticsearchPlugin, SearchClientAdapter } from '@vendure-community/elasticsearch-plugin';

class MyCustomAdapter implements SearchClientAdapter { /* ... */ }

ElasticsearchPlugin.init({
  // Return a fresh instance per call. The plugin invokes the factory once
  // per internal provider (the read-side service and the write-side indexer),
  // so each gets its own client and connection pool — bulk indexing cannot
  // saturate the pool serving live search queries, and shutdown closes them
  // independently.
  adapter: () => new MyCustomAdapter(),
});

If you need direct access to the underlying client (for example to issue a query that is not on the SearchClientAdapter surface), each built-in adapter exposes its native client via adapter.getRawClient().

Migrating from v1.x

Versions prior to 2.0.0 shipped as @vendure/elasticsearch-plugin and accepted host / port directly in ElasticsearchPlugin.init(...). The v2 release introduces the adapter pattern so the same plugin can power both Elasticsearch and OpenSearch.

Before (v1.x):

ElasticsearchPlugin.init({
  host: 'http://localhost',
  port: 9200,
});

After (v2.x):

ElasticsearchPlugin.init({
  adapter: () =>
    createElasticsearchAdapter({
      host: 'http://localhost',
      port: 9200,
    }),
});

Note the arrow: adapter accepts a factory that produces a SearchClientAdapter, not an adapter instance directly. The plugin calls the factory once per internal provider so each owns its own client.

The clientOptions property that previously lived at the top level of ElasticsearchOptions now lives on the adapter factory options and is passed through to the underlying client constructor verbatim.

Search API Extensions

This plugin extends the default search query of the Shop API, allowing richer querying of your product data.

The SearchResponse type is extended with information about price ranges in the result set:

extend type SearchResponse {
    prices: SearchResponsePriceData!
}

type SearchResponsePriceData {
    range: PriceRange!
    rangeWithTax: PriceRange!
    buckets: [PriceRangeBucket!]!
    bucketsWithTax: [PriceRangeBucket!]!
}

type PriceRangeBucket {
    to: Int!
    count: Int!
}

extend input SearchInput {
    priceRange: PriceRangeInput
    priceRangeWithTax: PriceRangeInput
    inStock: Boolean
}

input PriceRangeInput {
    min: Int!
    max: Int!
}

This SearchResponsePriceData type allows you to query data about the range of prices in the result set.

Example Request & Response

{
  search (input: {
    term: "table easel"
    groupByProduct: true
    priceRange: {
      min: 500
      max: 7000
    }
  }) {
    totalItems
    prices {
      range {
        min
        max
      }
      buckets {
        to
        count
      }
    }
    items {
      productName
      score
      price {
        ...on PriceRange {
          min
          max
        }
      }
    }
  }
}
{
  "data": {
    "search": {
      "totalItems": 9,
      "prices": {
        "range": {
          "min": 999,
          "max": 6396
        },
        "buckets": [
          {
            "to": 1000,
            "count": 1
          },
          {
            "to": 2000,
            "count": 2
          },
          {
            "to": 3000,
            "count": 3
          },
          {
            "to": 4000,
            "count": 1
          },
          {
            "to": 5000,
            "count": 1
          },
          {
            "to": 7000,
            "count": 1
          }
        ]
      },
      "items": [
        {
          "productName": "Loxley Yorkshire Table Easel",
          "score": 30.58831,
          "price": {
            "min": 4984,
            "max": 4984
          }
        }
        // ... truncated
      ]
    }
  }
}