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

v0.1.2

Published

Official n8n nodes for Kunfupay hosted checkouts and signed payment webhooks

Readme

n8n-nodes-kunfupay

Official n8n community nodes for Kunfupay. Create hosted one-time checkout sessions, retrieve their status, and start workflows from signed payment webhooks.

n8n is a workflow automation platform.

Installation

Install n8n-nodes-kunfupay from Settings > Community Nodes in n8n, or follow the n8n community node installation guide.

Nodes

Kunfupay

The action node supports these checkout session operations:

  • Create: creates a single-use hosted checkout URL that expires after 24 hours.
  • Get: retrieves the current status and details of a checkout session.

Amounts are expressed in EUR, not cents. For example, 10.50 means EUR 10.50.

Kunfupay Trigger

The trigger starts a workflow when Kunfupay sends either of these events:

  • payment.completed
  • payment.failed

Every delivery is verified with HMAC-SHA256 before it reaches the workflow. Invalid signatures receive an HTTP 401 response and do not start an execution.

The trigger output includes a deterministic eventId, calculated from the signed raw body. Store this value in a durable data store if the workflow performs non-idempotent work, because webhook deliveries can be retried.

Credentials

Kunfupay API

  1. In the Kunfupay business dashboard, open Integrations > API Keys.
  2. Create or copy an API key.
  3. In n8n, create a Kunfupay API credential and paste the key.

The credential test calls a read-only account endpoint. It never creates a checkout or moves money.

Kunfupay Webhook

  1. Add a Kunfupay Trigger to a workflow and select the events to receive.
  2. Publish the workflow and copy the trigger's Production URL.
  3. In the Kunfupay business dashboard, open Integrations > Webhooks.
  4. Add the Production URL, select the same events, and generate or enter a signing secret.
  5. In n8n, create a Kunfupay Webhook credential with that exact signing secret.

Use the Production URL for registered webhooks. The Test URL only listens temporarily while the editor is waiting for a test event.

Webhook safety

  • Fulfil orders only after payment.completed.
  • A payment.failed event is not terminal: the customer may retry.
  • Deliveries can be duplicated or arrive out of order. Use eventId, timestamp, and checkoutSessionId to make downstream processing idempotent.
  • Never expose the API key or webhook signing secret in workflow output.

Compatibility

Built with the official @n8n/node-cli and the current n8n-workflow API. The package is intended for current n8n releases that support community nodes.

Development

pnpm install
pnpm test
pnpm lint
pnpm build
pnpm dev

pnpm dev starts a local n8n development instance with these nodes linked.

Resources

License

MIT