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

v1.1.1

Published

n8n community node for Formfex — AI-powered form infrastructure and data collection platform

Readme

n8n-nodes-formfex

n8n community node for Formfex — AI-powered form infrastructure and data collection platform.

Create forms, collect responses, trigger automations, and generate forms with AI directly from your n8n workflows.

License n8n

Installation

Community Nodes (Recommended)

  1. Go to Settings > Community Nodes in your n8n instance
  2. Click Install a community node
  3. Enter n8n-nodes-formfex
  4. Click Install

Manual Installation

cd ~/.n8n/nodes
npm install n8n-nodes-formfex

Restart n8n after installation.

Credentials

You need a Formfex API key to use this node.

  1. Log in to Formfex
  2. Go to Account > Integrations > API Keys
  3. Click Create and select the permissions you need
  4. Copy the key (format: fxk_live_<keyId>.<secret>)
  5. In n8n, add a new Formfex API credential and paste the key

API keys require a Starter plan or higher.

Nodes

Formfex

Regular node with three resources:

Form Operations

| Operation | Description | |-----------|-------------| | Create | Create a new form | | Get | Get a form by ID | | Get Many | List forms (with pagination and search) | | Update | Update a form | | Delete | Delete a form | | Publish | Publish a form | | Unpublish | Unpublish a form |

Response Operations

| Operation | Description | |-----------|-------------| | Get | Get a single response by ID | | Get Many | List responses (with date filters and pagination) |

AI Operations

| Operation | Description | |-----------|-------------| | Generate Form | Generate a form from a text prompt using AI (polls until complete) | | Get Job Status | Check the status of an AI generation job | | Smart Analytics | Dispatch an async smart analytics report (results sent to callback URL) | | Analytics Chat | Ask natural language questions about form analytics data |

Formfex Trigger

Polling trigger that watches for new form responses.

| Parameter | Description | |-----------|-------------| | Form ID | The UUID of the form to watch |

The trigger polls periodically and returns any new responses since the last check. Configure the polling interval in your n8n workflow settings.

AI Agent Tool Mode

The Formfex node has usableAsTool: true, which means it can be used as a tool inside n8n AI Agent nodes. This allows AI agents to autonomously create forms, fetch responses, and generate analytics.

Supported Languages

Formfex supports 6 languages for form generation and content:

  • English (en)
  • Turkish (tr)
  • Spanish (es)
  • Italian (it)
  • German (de)
  • Dutch (nl)

API Scopes

When creating an API key, select the scopes your workflow needs:

| Scope | Description | |-------|-------------| | FORMS_READ | List and view forms | | FORMS_WRITE | Create, edit, delete forms | | RESPONSES_READ | List and view form submissions | | WEBHOOKS_READ | List and view webhooks | | WEBHOOKS_WRITE | Create, edit, delete webhooks | | AI_GENERATE | Generate forms with AI | | ANALYTICS_READ | Access smart analytics and analytics chat |

Resources

License

MIT