Node Catalog
Triggers
Nodes that initiate a workflow execution
Trigger Nodes
Triggers are the entry points for your workflow. Every workflow must start with exactly one Trigger node (with the exception of sub-workflows, which start implicitly when called).
When a trigger fires, Nodes2Cloud instantiates your compiled Cloudflare Worker and begins execution.
Available Triggers
| Node | Description |
|---|---|
| Manual Trigger | Starts the flow from a test payload you provide — no external event needed |
| Webhook Trigger | Triggers the workflow when a webhook request is received |
| Cron Trigger | Triggers the workflow on a schedule (e.g. every hour) |
| Error Trigger | Captures and handles unhandled errors that crash the workflow |
| Queue Trigger | Triggers the workflow when a message is pulled from a Cloudflare Queue |
| Google Sheets: Row Added/Updated | Triggers when a row is added or updated in a Google Sheet |
| Google Docs: Document Updated | Triggers when text is added or modified in a Google Doc |
