first commit
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled

This commit is contained in:
2026-03-17 16:22:57 +03:30
commit 3d5eaf9445
15349 changed files with 2847338 additions and 0 deletions
@@ -0,0 +1,17 @@
{
"node": "n8n-nodes-base.localFileTrigger",
"nodeVersion": "1.0",
"codexVersion": "1.0",
"categories": ["Core Nodes"],
"resources": {
"primaryDocumentation": [
{
"url": "https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.localfiletrigger/"
}
]
},
"alias": ["Watch", "Monitor"],
"subcategories": {
"Core Nodes": ["Files", "Other Trigger Nodes"]
}
}
@@ -0,0 +1,274 @@
import { watch } from 'chokidar';
import type { EventName } from 'chokidar/handler';
import {
type ITriggerFunctions,
type IDataObject,
type INodeType,
type INodeTypeDescription,
type ITriggerResponse,
NodeConnectionTypes,
} from 'n8n-workflow';
export class LocalFileTrigger implements INodeType {
description: INodeTypeDescription = {
displayName: 'Local File Trigger',
name: 'localFileTrigger',
icon: 'fa:folder-open',
iconColor: 'black',
group: ['trigger'],
version: 1,
subtitle: '=Path: {{$parameter["path"]}}',
description: 'Triggers a workflow on file system changes',
eventTriggerDescription: '',
defaults: {
name: 'Local File Trigger',
color: '#404040',
},
triggerPanel: {
header: '',
executionsHelp: {
inactive:
"<b>While building your workflow</b>, click the 'execute step' button, then make a change to your watched file or folder. This will trigger an execution, which will show up in this editor.<br /> <br /><b>Once you're happy with your workflow</b>, publish it. Then every time a change is detected, the workflow will execute. These executions will show up in the <a data-key='executions'>executions list</a>, but not in the editor.",
active:
"<b>While building your workflow</b>, click the 'execute step' button, then make a change to your watched file or folder. This will trigger an execution, which will show up in this editor.<br /> <br /><b>Your workflow will also execute automatically</b>, since it's activated. Every time a change is detected, this node will trigger an execution. These executions will show up in the <a data-key='executions'>executions list</a>, but not in the editor.",
},
activationHint:
'Once youve finished building your workflow, publish it to have it also listen continuously (you just wont see those executions here).',
},
inputs: [],
outputs: [NodeConnectionTypes.Main],
properties: [
{
displayName: 'Trigger On',
name: 'triggerOn',
type: 'options',
options: [
{
name: 'Changes to a Specific File',
value: 'file',
},
{
name: 'Changes Involving a Specific Folder',
value: 'folder',
},
],
required: true,
default: '',
},
{
displayName: 'File to Watch',
name: 'path',
type: 'string',
displayOptions: {
show: {
triggerOn: ['file'],
},
},
default: '',
placeholder: '/data/invoices/1.pdf',
},
{
displayName: 'Folder to Watch',
name: 'path',
type: 'string',
displayOptions: {
show: {
triggerOn: ['folder'],
},
},
default: '',
placeholder: '/data/invoices',
},
{
displayName: 'Watch for',
name: 'events',
type: 'multiOptions',
displayOptions: {
show: {
triggerOn: ['folder'],
},
},
options: [
{
name: 'File Added',
value: 'add',
description: 'Triggers whenever a new file was added',
},
{
name: 'File Changed',
value: 'change',
description: 'Triggers whenever a file was changed',
},
{
name: 'File Deleted',
value: 'unlink',
description: 'Triggers whenever a file was deleted',
},
{
name: 'Folder Added',
value: 'addDir',
description: 'Triggers whenever a new folder was added',
},
{
name: 'Folder Deleted',
value: 'unlinkDir',
description: 'Triggers whenever a folder was deleted',
},
],
required: true,
default: [],
description: 'The events to listen to',
},
{
displayName: 'Options',
name: 'options',
type: 'collection',
placeholder: 'Add option',
default: {},
options: [
{
displayName: 'Await Write Finish',
name: 'awaitWriteFinish',
type: 'boolean',
default: false,
description: 'Whether to wait until files finished writing to avoid partially read',
},
{
displayName: 'Include Linked Files/Folders',
name: 'followSymlinks',
type: 'boolean',
default: true,
description:
'Whether linked files/folders will also be watched (this includes symlinks, aliases on MacOS and shortcuts on Windows). Otherwise only the links themselves will be monitored).',
},
{
displayName: 'Ignore',
name: 'ignored',
type: 'string',
default: '',
placeholder: '**/*.txt or ignore-me/subfolder',
description:
"Files or paths to ignore. The whole path is tested, not just the filename. Supports <a href=\"https://github.com/micromatch/anymatch\">Anymatch</a>- syntax. Regex patterns may not work on macOS. To ignore files based on substring matching, use the 'Ignore Mode' option with 'Contain'.",
},
{
displayName: 'Ignore Existing Files/Folders',
name: 'ignoreInitial',
type: 'boolean',
default: true,
description: 'Whether to ignore existing files/folders to not trigger an event',
},
{
displayName: 'Max Folder Depth',
name: 'depth',
type: 'options',
options: [
{
name: '1 Levels Down',
value: 1,
},
{
name: '2 Levels Down',
value: 2,
},
{
name: '3 Levels Down',
value: 3,
},
{
name: '4 Levels Down',
value: 4,
},
{
name: '5 Levels Down',
value: 5,
},
{
name: 'Top Folder Only',
value: 0,
},
{
name: 'Unlimited',
value: -1,
},
],
default: -1,
description: 'How deep into the folder structure to watch for changes',
},
{
displayName: 'Use Polling',
name: 'usePolling',
type: 'boolean',
default: false,
description:
'Whether to use polling for watching. Typically necessary to successfully watch files over a network.',
},
{
displayName: 'Ignore Mode',
name: 'ignoreMode',
type: 'options',
options: [
{
name: 'Match',
value: 'match',
description:
'Ignore files using regex patterns (e.g., **/*.txt), Not supported on macOS',
},
{
name: 'Contain',
value: 'contain',
description: 'Ignore files if their path contains the specified value',
},
],
default: 'match',
description:
'Whether to ignore files using regex matching (Anymatch patterns) or by checking if the path contains a specified value',
},
],
},
],
};
async trigger(this: ITriggerFunctions): Promise<ITriggerResponse> {
const triggerOn = this.getNodeParameter('triggerOn') as string;
const path = this.getNodeParameter('path') as string;
const options = this.getNodeParameter('options', {}) as IDataObject;
let events: EventName[];
if (triggerOn === 'file') {
events = ['change'];
} else {
events = this.getNodeParameter('events', []) as EventName[];
}
const ignored = options.ignored === '' ? undefined : (options.ignored as string);
const watcher = watch(path, {
ignored: options.ignoreMode === 'match' ? ignored : (x) => x.includes(ignored as string),
persistent: true,
ignoreInitial:
options.ignoreInitial === undefined ? true : (options.ignoreInitial as boolean),
followSymlinks:
options.followSymlinks === undefined ? true : (options.followSymlinks as boolean),
depth: [-1, undefined].includes(options.depth as number)
? undefined
: (options.depth as number),
usePolling: options.usePolling as boolean,
awaitWriteFinish: options.awaitWriteFinish as boolean,
});
const executeTrigger = (event: string, pathString: string) => {
this.emit([this.helpers.returnJsonArray([{ event, path: pathString }])]);
};
for (const eventName of events) {
watcher.on(eventName, (pathString: string) => executeTrigger(eventName, pathString));
}
async function closeFunction() {
return await watcher.close();
}
return {
closeFunction,
};
}
}
@@ -0,0 +1,110 @@
import chokidar from 'chokidar';
import type { ITriggerFunctions } from 'n8n-workflow';
import { LocalFileTrigger } from '../LocalFileTrigger.node';
jest.mock('chokidar');
const mockWatcher = {
on: jest.fn(),
close: jest.fn().mockResolvedValue(undefined),
};
(chokidar.watch as unknown as jest.Mock).mockReturnValue(mockWatcher);
describe('LocalFileTrigger', () => {
let node: LocalFileTrigger;
let emitSpy: jest.Mock;
let context: ITriggerFunctions;
beforeEach(() => {
node = new LocalFileTrigger();
emitSpy = jest.fn();
context = {
getNodeParameter: jest.fn(),
emit: emitSpy,
helpers: {
returnJsonArray: (data: unknown[]) => data,
},
} as unknown as ITriggerFunctions;
jest.clearAllMocks();
});
it('should set up chokidar with correct options for folder + match ignore', async () => {
(context.getNodeParameter as jest.Mock)
.mockReturnValueOnce('folder')
.mockReturnValueOnce('/some/folder')
.mockReturnValueOnce({
ignored: '**/*.txt',
ignoreMode: 'match',
ignoreInitial: true,
followSymlinks: true,
depth: 1,
usePolling: false,
awaitWriteFinish: false,
})
.mockReturnValueOnce(['add']);
await node.trigger.call(context);
expect(chokidar.watch).toHaveBeenCalledWith(
'/some/folder',
expect.objectContaining({
ignored: '**/*.txt',
ignoreInitial: true,
depth: 1,
followSymlinks: true,
usePolling: false,
awaitWriteFinish: false,
}),
);
expect(mockWatcher.on).toHaveBeenCalledWith('add', expect.any(Function));
});
it('should wrap ignored in function for ignoreMode=contain', async () => {
(context.getNodeParameter as jest.Mock)
.mockReturnValueOnce('folder')
.mockReturnValueOnce('/folder')
.mockReturnValueOnce({
ignored: 'node_modules',
ignoreMode: 'contain',
})
.mockReturnValueOnce(['change']);
await node.trigger.call(context);
const call = (chokidar.watch as jest.Mock).mock.calls[0][1];
expect(typeof call.ignored).toBe('function');
expect(call.ignored('folder/node_modules/stuff')).toBe(true);
expect(call.ignored('folder/src/index.js')).toBe(false);
});
it('should emit an event when a file changes', async () => {
(context.getNodeParameter as jest.Mock)
.mockReturnValueOnce('folder')
.mockReturnValueOnce('/watched')
.mockReturnValueOnce({})
.mockReturnValueOnce(['change']);
await node.trigger.call(context);
const callback = mockWatcher.on.mock.calls.find(([event]) => event === 'change')?.[1];
callback?.('/watched/file.txt');
expect(emitSpy).toHaveBeenCalledWith([[{ event: 'change', path: '/watched/file.txt' }]]);
});
it('should use "change" as the only event if watching a specific file', async () => {
(context.getNodeParameter as jest.Mock)
.mockReturnValueOnce('file')
.mockReturnValueOnce('/watched/file.txt')
.mockReturnValueOnce({});
await node.trigger.call(context);
expect(mockWatcher.on).toHaveBeenCalledWith('change', expect.any(Function));
});
});