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-beliq

v0.1.1

Published

n8n community node for beliq - generate and validate EU-compliant e-invoices (XRechnung, ZUGFeRD, Factur-X, Peppol BIS) with authority-pinned, drift-checked rules.

Readme

n8n-nodes-beliq

An n8n community node for beliq, the EU e-invoicing compliance API. Generate and validate compliant e-invoice documents (XRechnung, ZUGFeRD, Factur-X, Peppol BIS) with authority-pinned, nightly-drift-checked rules.

beliq generates and validates the compliant document. Transmission (Peppol, PDP, KSeF, SDI), archiving, and tax-authority reporting are separate and remain your access point's job. This node never sends or files an invoice.

Installation

In n8n, go to Settings -> Community Nodes -> Install and enter n8n-nodes-beliq. For a self-hosted instance you can also npm install n8n-nodes-beliq in your n8n custom-extensions directory.

Operations

  • Generate: build a compliant document from an EN 16931 invoice object. Returns the XML, or a hybrid PDF/A-3 with the XML embedded, as binary data plus the Schematron version used.
  • Validate: check an XML or PDF invoice against the authority-pinned rules. Returns the validation result (valid flag, errors, warnings, rule and ruleset versions).
  • Parse: extract a structured invoice object from an XML or PDF document.
  • Convert: convert a document between formats (for example CII to UBL, or UBL to ZUGFeRD). Returns the converted document as binary data plus conversion metadata (source and target format, profile detected, lost elements, tools used).

Each operation reads input either from a binary field (for example the output of a previous node, or an HTTP download) or from pasted text, and writes document output to a binary field you name.

The Advanced (JSON) field is an escape hatch: its JSON is deep-merged into the request body (Generate) or query (Validate, Parse, Convert), so any API option not surfaced as a control is still reachable.

Credentials

Create an API key in the beliq dashboard, then add a beliq API credential:

  • API Key: your beliq key.
  • Base URL: defaults to https://api.beliq.eu. Override only for a self-hosted or staging deployment.

The credential test calls GET /v1/me, a no-quota check that confirms the key works without consuming your monthly quota.

Flagship template

templates/order-to-xrechnung-zugferd-validate.json shows a validate-led flow: a sample order is mapped to an EN 16931 invoice, beliq generates an XRechnung and a hybrid ZUGFeRD, beliq validates the result, and a compliance gate guards delivery. Import it from the n8n canvas and run it.

Compatibility

Requires n8n with n8nNodesApiVersion: 1 and Node.js >= 20.15.

Development

npm install
npm run build      # tsc + copy icons into dist
npm run lint
npm test           # unit tests (no network)
BELIQ_API_KEY=blq_xxx npm run test:integration   # hits the live API; draws quota

Publishing

Released to npm as n8n-nodes-beliq. Releases run from .github/workflows/release.yml via npm Trusted Publishing (OIDC, with provenance) — push a v*.*.* tag to publish a new version. No npm token is stored in the repo.

License

MIT