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

v2.6.2

Published

n8n community node for Ablefy – triggers and actions for orders, payments, payers, products, SaaS plans, and refunds.

Readme

n8n-nodes-ablefy

An n8n community node package for Ablefy (formerly elopage) — the all-in-one platform for coaches, digital service providers, and online course creators.

This package provides two nodes:

| Node | Type | Purpose | |---|---|---| | Ablefy Trigger | Trigger | Starts a workflow when Ablefy webhook events fire | | Ablefy | Action | Make custom API calls to the Ablefy REST API |


Installation

On n8n.cloud or self-hosted (recommended)

  1. In n8n, go to Settings → Community Nodes.
  2. Click Install a community node.
  3. Enter n8n-nodes-ablefy and click Install.

Manual installation (self-hosted only)

cd ~/.n8n/nodes
npm install /path/to/n8n-nodes-ablefy
# Restart n8n

Credentials

Before using either node, create Ablefy API credentials:

  1. In your Ablefy account, go to Apps & Integrations → Integrations → ablefy API.
  2. Click Generate API key. Two keys are generated: an API Key and a Secret Key.
  3. In n8n, create a new credential of type Ablefy API and paste both keys.
  4. Choose Production or Sandbox / Test environment.

Ablefy Trigger Node

The trigger node registers a webhook endpoint in your Ablefy account automatically when the workflow is activated, and removes it when the workflow is deactivated.

Supported Events

| Category | Event | Value | |---|---|---| | Order | Order: Created | order_created | | Order | Order: Updated | order_updated | | Order | Order: Canceled | order_canceled | | Payment | Payment: Succeeded | payment_succeeded | | Payment | Payment: Failed | payment_failed | | Payment | Payment: Chargeback | payment_chargeback | | Refund | Refund: Created | refund_created | | Payer | Payer: Created | payer_created | | Payer | Payer: Updated | payer_updated | | Product | Product: Created | product_created | | Product | Product: Updated | product_updated | | Subscription | Subscription: Created | subscription_created | | Subscription | Subscription: Renewed | subscription_renewed | | Subscription | Subscription: Canceled | subscription_canceled | | Subscription | Subscription: Expired | subscription_expired | | Pricing Plan | Pricing Plan: Created | pricing_plan_created | | Pricing Plan | Pricing Plan: Updated | pricing_plan_updated | | Opt-In | New Email Opt-In | email_opt_in | | Event Ticket | Event Ticket: Purchased | event_ticket_purchased |

Output

The trigger outputs the full webhook payload sent by Ablefy, plus a _headers field containing the HTTP request headers (useful for signature verification).

Configuration

| Parameter | Description | |---|---| | Events | One or more events to subscribe to (multi-select) | | Webhook Endpoint Name | The display name used when registering the endpoint in Ablefy |


Ablefy Action Node

The action node allows you to make arbitrary API calls to the Ablefy REST API.

Usage

  1. Select Resource: Custom API Call
  2. Select Operation: Make an API Call
  3. Set the Method (GET, POST, PUT, PATCH, DELETE)
  4. Set the Endpoint (e.g. /orders, /products, /payers)
  5. Optionally provide Query Parameters and/or Body Parameters as JSON

API Base URL

| Environment | Base URL | |---|---| | Production | https://api.myablefy.com/api/v1 | | Sandbox | https://sandbox.elopage.com/api/v1 |

Common Endpoints

| Endpoint | Method | Description | |---|---|---| | /orders | GET | List orders | | /orders/{id} | GET | Get a specific order | | /orders/{id} | PUT | Cancel an order | | /payments/{id} | GET | Get a payment | | /payments/{id}/refund | PUT | Refund a payment | | /products | GET | List products | | /products | POST | Create a product | | /products/{id} | GET | Get a product | | /products/{id} | PUT | Update a product | | /pricing_plans | GET | List pricing plans | | /payers | GET | List payers (customers) | | /webhook_endpoints | GET | List webhook endpoints | | /webhook_endpoints | POST | Create a webhook endpoint | | /webhook_endpoints/{id} | DELETE | Delete a webhook endpoint | | /funnels | GET | List funnels | | /invoices | GET | List invoices | | /publishers | GET | List affiliate publishers |


Publishing to npm

To publish this package so it can be installed via the n8n UI:

  1. Generate an npm Access Token with "Allow this token to bypass 2FA" enabled.
  2. Run:
npm config set //registry.npmjs.org/:_authToken "npm_YOUR_TOKEN"
npm publish --access public

Development

# Install dependencies
pnpm install

# Build (compile TypeScript + copy SVG icons)
npm run build

# Watch mode
npm run dev

License

MIT