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

@catalogicus-international/n8n-nodes-lemanapro

v0.1.1

Published

n8n community node for Lemana PRO product lookup, prices, stock and product links

Readme

n8n-nodes-lemanapro

n8n community node for low-volume Lemana PRO product lookup from lemanapro.ru.

The storefront protects normal HTML catalogue/search pages with Qrator. This package therefore uses browser-facing API/orchestrator endpoints where they are available and fails clearly when Lemana PRO returns a browser challenge.

Nodes

  • Lemana PRO — standard workflow node. Resource Product, operations Search, Get Product, Get Price.
  • Lemana PRO Product Card — resolves a product by LM code or fetches one product page by URL/path when the page is readable.
  • Lemana PRO Tool — the same actions exposed to an AI Agent via $fromAI.

What Works

  • Search calls a configurable product search API path when one is provided in credentials, normalizes returned product JSON, and returns price, stock and card links when those fields are present.
  • If a product endpoint is not configured or not available, Search falls back to the public header orchestrator getSuggestions endpoint. That returns category/search suggestions such as /catalogue/cement/, not product cards.
  • Get Product accepts an LM code, slug/path, or URL. For numeric LM codes it calls get-product-url and returns the resolved card URL when Lemana PRO has one.

Credentials

Lemana PRO API contains:

  • Base URL — defaults to https://lemanapro.ru.
  • API Base URL — defaults to https://api.lemanapro.ru.
  • API Key — public storefront X-Api-Key used by the header microfrontend.
  • Region ID — defaults to 34 (Москва, Московская область).
  • Search Endpoint Path — optional product search API path, for example /orchestrator/.../products.
  • User Agent — sent with HTML requests.

No private token is required.

Output

Product items are normalized to:

{
  "name": "Цемент М500 25 кг",
  "code": "100500",
  "sku": "100500",
  "slug": "cement-m500",
  "url": "https://lemanapro.ru/product/cement-m500/",
  "image": "https://cdn.lemanapro.ru/...",
  "description": null,
  "brand": "Lemana",
  "category": "Цемент",
  "price": 349,
  "oldPrice": 399,
  "priceText": "349 ₽",
  "currency": "RUB",
  "availability": "InStock",
  "stock": 17,
  "stockText": "Доступно 17 шт",
  "properties": [],
  "source": "api"
}

When only suggestions are available, Lemana PRO Tool returns:

{
  "query": "цемент",
  "found": 0,
  "products": [],
  "suggestions": [
    {
      "name": "цемент",
      "type": "PLP",
      "url": "https://lemanapro.ru/catalogue/cement/",
      "entityId": "095ab520-4347-11ea-8ada-47c25610db68",
      "entityType": "FAMILY",
      "image": "https://cdn.lemanapro.ru/..."
    }
  ]
}

Caveats

This reads third-party storefront APIs, not an official partner feed. For bulk or contractual catalogue syncs, request an official Lemana PRO price/stock feed. The product-list endpoint can differ between storefront releases; set Search Endpoint Path when you have the current product API path.

Development

pnpm install
pnpm build
pnpm test
pnpm lint

License

MIT