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

v0.1.0

Published

Official n8n community node for the Eskadia business management API

Readme

n8n-nodes-eskadia

The official n8n community node for Eskadia. It connects n8n workflows to Eskadia's business management API with permission-aware resource and operation selectors.

The node reads the capabilities of the configured API token at runtime. Users only see operations allowed by the token role, token access level, and modules enabled for their Eskadia organization.

Features

  • Dynamic resource and operation selectors for the complete Eskadia API
  • Role, scope, and module-aware operation filtering
  • Support for path parameters, query parameters, and JSON request bodies
  • Automatic pagination for list operations
  • Automatic idempotency keys for safe POST retries
  • Data-only or full-envelope output
  • Array splitting into native n8n items
  • Configurable timeout and pagination safety limits
  • Official Eskadia icons for light and dark themes
  • No runtime dependencies

Installation

n8n interface

On a self-hosted n8n instance, open Settings > Community Nodes, select Install, and enter:

n8n-nodes-eskadia

Restart n8n if your deployment requires it. See n8n's community node installation guide.

Environment-managed installations

For n8n 2.21.0 or newer, the package can also be managed through N8N_COMMUNITY_PACKAGES:

[{"name":"n8n-nodes-eskadia","version":"0.1.0"}]

Credentials

  1. Sign in to Eskadia as an owner or administrator.
  2. Open Settings > API.
  3. Create a token and choose its role and access level:
    • Read only allows GET operations.
    • Read and write allows GET, POST, PUT, and PATCH operations.
    • Full access also allows DELETE operations.
  4. Copy the token when Eskadia displays it. It is shown only once.
  5. In n8n, create an Eskadia API credential.
  6. Enter the Eskadia instance URL and API token.

The default instance URL is https://app.eskadia.com. Enter the base instance URL without /api/v1. HTTPS is required except for local development URLs.

Operations

The node supports every Bearer-authenticated operation exposed by the Eskadia API. The exact list is loaded from GET /api/v1/capabilities and can grow without requiring a new node release.

Resources currently include core CRM, contacts, companies, deals, activities, finance, HR, purchasing, construction, marketing, support, training, integrations, AI agents, promotions, production, webhooks, and administration. A token sees only the subset allowed by its permissions and organization modules.

Parameters

  • Resource Name or ID: Select an available Eskadia resource.
  • Operation Name or ID: Select an allowed operation. Its HTTP method and path are shown in the description.
  • Path Parameters: Add values for placeholders in the selected path, such as id or slug.
  • Query Parameters: Add filters, sorting, expansion, or pagination parameters supported by the endpoint.
  • JSON Body: Provide the object sent by create and update operations.

Options

  • Automatic Idempotency Key generates a unique key for POST requests.
  • Idempotency Key supplies a stable key when a workflow must safely retry the same logical request.
  • Return All follows every page reported by the API.
  • Limit caps output when Return All is disabled.
  • Maximum Pages prevents an unexpected pagination loop.
  • Response returns only data or the complete Eskadia response envelope.
  • Split Into Items converts response arrays into individual n8n items.
  • Timeout sets the request timeout in milliseconds.

Examples

Import the examples from the examples directory:

  • list-contacts.json lists up to 50 contacts.
  • create-contact.json creates a contact with an idempotency key.

Never commit real Eskadia credentials to a workflow export. n8n stores credentials separately and asks you to select them after import.

Permission behavior

Permissions are enforced twice:

  1. Eskadia filters the resource and operation selectors returned to n8n.
  2. Eskadia validates the selected operation again when the workflow executes.

Removing a module, reducing a token role, or changing token access takes effect without reinstalling the node. A workflow that no longer has permission fails before sending the business request.

Compatibility

  • Node.js 22 or newer
  • n8n versions that support the current community node package format
  • Eskadia API v1 with the capabilities endpoint

The package is built and tested with the latest @n8n/node-cli release in CI.

Development

npm ci
npm test
npm run lint
npm run build
npm pack --dry-run

Security

Report vulnerabilities privately as described in SECURITY.md. Do not include tokens, customer data, or private instance URLs in public issues.

License

MIT