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

@workiom/n8n-nodes-workiom

v0.4.0

Published

n8n community node for the Workiom no-code platform

Readme

n8n-nodes-workiom

n8n community node for the Workiom no-code platform. It lets you read and write Workiom data (apps, lists, records) and trigger workflows when records are created or updated.

Nodes

  • Workiom (action) — App, List, and Record resources with full CRUD. Record Create/Update render a typed field form (date pickers, toggles, and dropdowns for Select/Status/User/Linked-List fields) loaded live from your list schema.
  • Workiom Trigger — webhook node that fires on New Record / Updated Record, driven by a Workiom Automation.

Authentication

Create a Workiom API credential:

  • Access Token — your Workiom API key (sent as the X-Api-Key header).
  • Base URL — defaults to https://api.workiom.com; override only for staging/self-hosted.

Build

# from the project root
npm install
npm run build

This compiles TypeScript into dist/, which is what n8n loads. Re-run npm run build after any source change.

For active development with hot reload:

npm run dev

Use as a custom node (without publishing to npm)

n8n loads any package found under the directory named in N8N_CUSTOM_EXTENSIONS. This is the simplest way to run the node locally or on your own n8n instance — no npm publish or Community-Nodes install required.

Option A — Docker Compose (recommended for local)

A ready-to-use docker-compose.yml is included. It mounts this built package into n8n as a custom extension:

services:
  n8n:
    image: docker.n8n.io/n8nio/n8n:latest
    restart: unless-stopped
    ports:
      - "5678:5678"
    environment:
      - N8N_CUSTOM_EXTENSIONS=/custom-extensions
      - GENERIC_TIMEZONE=Asia/Dubai
    volumes:
      - n8n_data:/home/node/.n8n
      # Mount the built package so n8n picks it up as a custom extension
      - .:/custom-extensions/n8n-nodes-workiom:ro

volumes:
  n8n_data:

Steps:

npm run build          # produce dist/
docker compose up -d   # start n8n with the node mounted

Open http://localhost:5678, then search for Workiom when adding a node.

After changing the code:

npm run build
docker compose restart

The mount maps the whole package (including dist/, package.json, and the n8n block) to /custom-extensions/n8n-nodes-workiom. n8n reads the n8n.nodes / n8n.credentials entries in package.json to find the compiled files.

Option B — existing n8n install (npm / self-hosted)

On the machine running n8n, place the built package under the custom-extensions folder and point n8n at it:

# build the package
npm run build

# copy (or symlink) the whole package somewhere n8n can read
mkdir -p ~/.n8n/custom
cp -r . ~/.n8n/custom/n8n-nodes-workiom

# tell n8n where to look, then start it
export N8N_CUSTOM_EXTENSIONS=~/.n8n/custom
n8n start

~/.n8n/custom is also scanned by default in many setups, but setting N8N_CUSTOM_EXTENSIONS explicitly is the reliable approach. Restart n8n after each rebuild.


Setting up the Trigger

  1. Add the Workiom Trigger node, pick the event (New / Updated Record), select the App and List, and activate the workflow to get the webhook URL.
  2. In Workiom, open the list → Automations → create an automation:
    • Trigger: Record Created / Record Updated (matching the node)
    • Action: Webhook → paste the n8n URL, method POST, type JSON
    • Body: {"record": "{{1. YourListName}}"}
  3. Save and activate. New/updated records now fire the workflow.

Publishing to npm

See PUBLISHING.md for publishing the package so it can be installed through n8n's in-app Community Nodes feature.

License

MIT