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

@findly.tech/shop-module-pwa

v0.2.27

Published

FINDLY search integration for PlentyONE PWA – conditional override of search, facet and autocomplete

Readme

@findly.tech/shop-module-pwa

FINDLY-Integration für PlentyONE PWA-Shops. Das Modul registriert dünne Router-Composables für useSearch, useSearchSuggestions und useProducts. Nur wenn das Backend-Plugin aktiv ist (enabled: true), werden FINDLY-REST-Endpoints genutzt. Andernfalls delegiert das Modul 1:1 an die Theme-Composables des Shops (app/composables/…) – kein eigener Plenty-Fallback-Pfad.

Voraussetzungen

  1. PlentyONE-Plugin FINDLYPlentyOnePWABackend installiert und konfiguriert
  2. PlentyONE PWA mit @plentymarkets/shop-core
  3. .env mit CONFIG_ID und API_ENDPOINT

Installation

npm install @findly.tech/shop-module-pwa

Lokale Entwicklung (Monorepo / File-Link):

npm install file:../FINDLYPlentyOnePWAModule

Nuxt-Konfiguration

In nuxt.config.ts nach @plentymarkets/shop-core eintragen:

export default defineNuxtConfig({
  modules: [
    '@plentymarkets/shop-core',
    '@findly.tech/shop-module-pwa',
    // …weitere Module
  ],
  findly: {
    enabled: true,
  },
});

Aktivierungslogik

| Bedingung | Verhalten | |-----------|-----------| | Kein CONFIG_ID in .env | Theme-Composables, kein /rest/findly/settings | | enabled: false / Plugin fehlt / Netzwerkfehler | Theme-Composables (identisch zu Shop ohne FINDLY) | | enabled: true | FINDLY-REST für Suche / Facet / Autocomplete |

Optional lädt das Client-Plugin GET /rest/findly/settings beim Start (nur mit CONFIG_ID), sofern die Daten nicht bereits per SSR (useAsyncData) vorliegen. Pro Sprache und Reload erfolgt höchstens ein Netzwerk-Request.

Routing bei aktivem FINDLY

| Composable | Plenty-Standard | FINDLY | |------------|-----------------|--------| | useSearch | getSearch | POST /rest/findly/search | | useSearchSuggestions | getItemSearchAutocomplete | POST /rest/findly/search (autocomplete: true) | | useProducts | getFacet | POST /rest/findly/facet |

Bei onlySearch: true in den Plugin-Settings bleiben Kategorie/Filter auf Plenty (getFacet); Suche und Autocomplete nutzen FINDLY.

Öffentliche API

useFindlyContext()

const {
  isActive,           // FINDLY aktiv für aktuelle Sprache
  isSearchEnabled,    // Suche über FINDLY
  isAutocompleteEnabled,
  isFacetEnabled,     // false bei onlySearch
  settings,           // Plugin-Settings (Anzeige-Flags, filterUi, …)
  ensureReady,        // Settings laden (wird von Composables automatisch aufgerufen)
} = useFindlyContext();

Architektur (v0.2+)

Das Modul registriert Router-Composables mit Priority 100. Bei inaktivem FINDLY delegieren sie per explizitem Import an die Theme-Dateien unter app/composables/… (z. B. ~/composables/useProducts/useProducts). Dadurch laufen Theme-Anpassungen und Plenty-Standard unverändert.

| Pfad | FINDLY inaktiv | FINDLY aktiv (enabled: true) | |------|----------------|--------------------------------| | Kategorie / Filter | Theme useProductsgetFacet | POST /rest/findly/facet | | Suche | Theme useSearch | POST /rest/findly/search | | Autocomplete | Theme useSearchSuggestions | FINDLY-Autocomplete |

findly: { enabled: false } in nuxt.config.ts deaktiviert das Modul vollständig (keine Router, kein Settings-Plugin).

Fehlerbehandlung

Schlägt ein FINDLY-Request zur Laufzeit fehl, fällt das Modul für diesen einzelnen Request auf die Plenty-API zurück (Graceful Degradation).

Lizenz

AGPL-3.0

npm-Veröffentlichung

Siehe docs/NPM_PUBLISHING.md.