Package Information
Released: 5/3/2025
Downloads: 19 weeklyย /ย 87 monthly
Latest Version: 0.1.4
Author: arthurbk
Documentation
n8n-nodes-swiftgum-trigger
A custom n8n trigger node built by Swiftgum.
This node allows you to trigger workflows from Swiftgum-related events or integrations.
๐ Features
- Custom trigger node for Swiftgum-specific events
- Built for compatibility with the latest n8n versions
- Ready to use in your local or cloud-hosted n8n instance
๐งฐ Installation
You can install this package directly via the n8n UI or CLI.
Via n8n UI
Paste this URL into the Install from npm input:
https://www.npmjs.com/package/n8n-nodes-swiftgum-trigger
Via CLI (inside your custom n8n setup)
pnpm add n8n-nodes-swiftgum-trigger
๐งช Local Development
To test this node locally:
pnpm install
pnpm build
You can also use our internal dev environment with Docker:
./fetch-node.sh
docker compose up --build
๐ File Structure
n8n-nodes-swiftgum-trigger/
โโโ credentials/ # Custom credential classes
โโโ nodes/ # Swiftgum Trigger node definition
โโโ dist/ # Compiled output
โโโ gulpfile.js # Icon handling
โโโ tsconfig.json
โโโ package.json
โโโ README.md
๐งโ๐ป Contributing
Pull requests and contributions are welcome! Please:
- Follow the code structure in
nodes/
andcredentials/
- Run
pnpm lint
before submitting - Build locally and test in a running n8n instance
๐ Publishing
If you're making changes to this node and want to publish them to npm:
Bump the version:
pnpm version patch # or minor / major
Publish to npm:
pnpm publish --access public
๐ฆ npm does not allow publishing the same version twice. Always increment the version before running
pnpm publish
.