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

n8n-nodes-confluence-advanced

v0.2.9

Published

Advanced Confluence node for n8n: Data Center (PAT) & Cloud, page tree recursion, attachments, CQL search, resource locators, full pagination. Powered by Thomas Braun.

Downloads

1,674

Readme

n8n-nodes-confluence-advanced

Confluence Advanced — n8n-Community-Node für Confluence Data Center (Personal Access Token), Cloud vorbereitet. Seiten, komplette Seitenbäume (rekursiv), Attachments, CQL-Suche — mit vollständig interner Pagination und normalisiertem Output.

Powered by Thomas Braun

Installation

cd C:\n8n\n8n-inst\.n8n\nodes        # bzw. ~/.n8n/nodes
npm install n8n-nodes-confluence-advanced
# n8n neu starten!

Credentials „Confluence API"

| Feld | Hinweis | |---|---| | Deployment Type | Data Center (Default) oder Cloud (experimentell) | | Base URL | nur der Host, z. B. https://confluence.firma.de — ohne /rest/api; versehentliche Suffixe werden automatisch entfernt | | Authentication | Personal Access Token (Bearer, Data Center) · Basic/API-Token (Cloud) · Custom Bearer | | Ignore SSL Issues | für interne CAs (Default: aus) | | Request Timeout | Default 30000 ms |

Der Credential-Test prüft Erreichbarkeit, Authentifizierung und dass wirklich die Confluence-API antwortet (erkennt SSO-/HTML-Antworten).

Ressourcen & Operationen (V1)

  • Page: Get · Get Many (Filter/CQL) · Get Children · Get Descendants (rekursiv) · Create · Update · Delete
  • Attachment: List · Get · Download · Upload · Update (neue Version) · Delete · Download From Page Tree
  • Search: Simple (Space/Titel/Typ/Label → CQL wird gebaut) oder Advanced CQL
  • Space: Get · Get Many

Seiten-Auswahl (alle drei Nutzungsszenarien)

Das Page-Feld ist ein Resource Locator mit drei Modi:

  1. From List — Suche mit Breadcrumb (DEMO / Wiki Root / 2025 / …), gleichnamige Seiten unterscheidbar
  2. By ID{{ $json.pageId }} für dynamische Workflows
  3. By URL…viewpage.action?pageId=…, …/pages/<id>/…, …/spaces/KEY/pages/<id> werden automatisch extrahiert

Get Descendants (Kernfunktion)

Root wählen → Include Root, Maximum Depth (0 = unbegrenzt), optional Inhalt/Labels/Attachments je Seite. Output standardmäßig ein Item pro Seite mit:

{ "pageId": "…", "parentPageId": "…", "rootPageId": "…", "depth": 1,
  "path": ["Wiki Root", "2025"], "title": "2025", "spaceKey": "…", "version": 14, "url": "…" }

Continue on Page Error (Default an): nicht lesbare Seiten werden als { success:false, error:{statusCode,message} }-Item ausgegeben, der Rest läuft weiter. Alternativ Single Tree als verschachteltes JSON.

Update ohne Versionsstress

Modi Replace / Append / Prepend — der Node holt die aktuelle Version, mischt den Inhalt, zählt die Version hoch und wiederholt bei einem 409-Versionskonflikt automatisch einmal mit frischer Version.

Attachments

Upload/Update als Multipart mit automatischem X-Atlassian-Token: no-check. Download From Page Tree: alle Dateien eines Seitenbaums (Glob-Filter wie *.pdf, *.docx), eine Datei = ein Item mit Binary — ideal für Wissensbasis → Text-Extraktion → Embeddings.

Fehlerbilder

Deutsche Klartextmeldungen für 401/403/404/409/429/5xx — inklusive des Confluence-Klassikers, dass fehlende Leserechte als 404 maskiert werden. 429 wird mit Retry-After-Backoff einmal automatisch wiederholt.

Entwicklung

npm install && npm run build && npm test   # 29 Tests gegen eingebauten Mock-Confluence-Server (kein Netz nötig)

Lizenz

Proprietäre Lizenz (siehe LICENSE): Installation/Betrieb in eigenen n8n-Instanzen erlaubt; die Kennzeichnung „Powered by Thomas Braun" und die Copyright-Hinweise dürfen nicht entfernt werden (wesentliche Bedingung).

© 2026 Thomas Braun