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

@blotoutio/providers-evo-search-sdk

v1.53.1

Published

Evo Search SDK for EdgeTag

Downloads

1,506

Readme

providers-evo-search-sdk

This library was generated with Nx.

Building

Run nx build providers-evo-search-sdk to build the library.

Headless React integration

For headless storefronts (Hydrogen, Next.js, Remix, custom React apps) where the EdgeTag pixel is already installed and the EvoSearch provider is enabled on the tag, this package exports a React hook from the /hooks subpath.

Install:

npm install @blotoutio/providers-evo-search-sdk

Wrap your app once:

import { EvoSearchProvider } from '@blotoutio/providers-evo-search-sdk/hooks'

export default function Root({ children }) {
  return <EvoSearchProvider>{children}</EvoSearchProvider>
}

Use the hook in any search component:

import { useEvoSearch } from '@blotoutio/providers-evo-search-sdk/hooks'

function HeaderSearch() {
  const { query, setQuery, results, suggestions, loading, trackClick } = useEvoSearch()
  return (
    <>
      <input value={query} onChange={(e) => setQuery(e.target.value)} />
      {loading && <span>Loading…</span>}
      <ul>
        {suggestions.map((s) => (
          <li key={s.phrase}>{s.phrase}</li>
        ))}
      </ul>
      <ul>
        {results.map((p) => (
          <li key={p.id} onClick={() => trackClick(p.id)}>
            {p.title}
          </li>
        ))}
      </ul>
    </>
  )
}

For full API reference, see the design spec in the Blotout solutions repo or the docs site.

Disabling the default UI (headless mode)

When you want to render search results with your own React components instead of the default Lit custom element, flip Disable default UI in the EvoSearch provider settings (edgetag admin → providers → EvoSearch). With this toggle on:

  • The CDN serves a lighter core.min.js bundle instead of index.min.js — no Lit element, no default DOM.
  • The React hook from the /hooks subpath continues to work — it reads the EvoSearch API from the same registry the default UI would have used.
  • Changes take up to 25 minutes to propagate via the edge cache (max-age=1500 on the /load response).

The EdgeTag pixel must still be loaded on your storefront for the SDK to register and the React hook to receive an API.

/load endpoint cache

CDN responses for /load cache for ~25 minutes (max-age=1500). Toggling Disable default UI in the admin form takes up to that long to propagate across edge nodes — bake the delay into release planning.