mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-22 04:10:01 +00:00
🚚 Directorize all nodes
This commit is contained in:
47
packages/nodes-base/nodes/Start/Start.node.json
Normal file
47
packages/nodes-base/nodes/Start/Start.node.json
Normal file
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"node": "n8n-nodes-base.start",
|
||||
"nodeVersion": "1.0",
|
||||
"codexVersion": "1.0",
|
||||
"categories": [
|
||||
"Core Nodes"
|
||||
],
|
||||
"resources": {
|
||||
"primaryDocumentation": [
|
||||
{
|
||||
"url": "https://docs.n8n.io/nodes/n8n-nodes-base.start/"
|
||||
}
|
||||
],
|
||||
"generic": [
|
||||
{
|
||||
"label": "Why business process automation with n8n can change your daily life",
|
||||
"icon": "🧬",
|
||||
"url": "https://n8n.io/blog/why-business-process-automation-with-n8n-can-change-your-daily-life/"
|
||||
},
|
||||
{
|
||||
"label": "Why I chose n8n over Zapier in 2020",
|
||||
"icon": "😍",
|
||||
"url": "https://n8n.io/blog/why-i-chose-n8n-over-zapier-in-2020/"
|
||||
},
|
||||
{
|
||||
"label": "Automatically pulling and visualizing data with n8n",
|
||||
"icon": "📈",
|
||||
"url": "https://n8n.io/blog/automatically-pulling-and-visualizing-data-with-n8n/"
|
||||
},
|
||||
{
|
||||
"label": "How to use the HTTP Request Node - The Swiss Army Knife for Workflow Automation",
|
||||
"icon": "🧰",
|
||||
"url": "https://n8n.io/blog/how-to-use-the-http-request-node-the-swiss-army-knife-for-workflow-automation/"
|
||||
},
|
||||
{
|
||||
"label": "Sending SMS the Low-Code Way with Airtable, Twilio Programmable SMS, and n8n",
|
||||
"icon": "📱",
|
||||
"url": "https://n8n.io/blog/sending-sms-the-low-code-way-with-airtable-twilio-programmable-sms-and-n8n/"
|
||||
},
|
||||
{
|
||||
"label": "Automating Conference Organization Processes with n8n",
|
||||
"icon": "🙋♀️",
|
||||
"url": "https://n8n.io/blog/automating-conference-organization-processes-with-n8n/"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
33
packages/nodes-base/nodes/Start/Start.node.ts
Normal file
33
packages/nodes-base/nodes/Start/Start.node.ts
Normal file
@@ -0,0 +1,33 @@
|
||||
import { IExecuteFunctions } from 'n8n-core';
|
||||
import {
|
||||
INodeExecutionData,
|
||||
INodeType,
|
||||
INodeTypeDescription,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
|
||||
export class Start implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Start',
|
||||
name: 'start',
|
||||
icon: 'fa:play',
|
||||
group: ['input'],
|
||||
version: 1,
|
||||
description: 'Starts the workflow execution from this node',
|
||||
maxNodes: 1,
|
||||
defaults: {
|
||||
name: 'Start',
|
||||
color: '#00e000',
|
||||
},
|
||||
inputs: [],
|
||||
outputs: ['main'],
|
||||
properties: [
|
||||
],
|
||||
};
|
||||
|
||||
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
||||
const items = this.getInputData();
|
||||
|
||||
return this.prepareOutputData(items);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user