Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 14 additions & 5 deletions _snippets/integrations/creating-nodes/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,20 @@ You can test your node as you build it by running it in a local n8n instance.
```

/// note | Check your directory
Make sure you run `npm link <node-name>` in the nodes directory within your n8n installation. This can be:

* `~/.n8n/custom/`
* `~/.n8n/<your-custom-name>`: if your n8n installation set a different name using `N8N_CUSTOM_EXTENSIONS`.
///
Make sure you run `npm link <node-name>` in the nodes directory within your n8n installation. This can be:

Linux:

* `~/.n8n/custom/`
* `~/.n8n/<your-custom-name>`: if your n8n installation set a different name using `N8N_CUSTOM_EXTENSIONS`.

Windows:

- `%userprofile%\.n8n\nodes`
- `%userprofile%\.n8n\<your-custom-name>`

If you've done a fresh n8n install, you need to start n8n for it to create the `.n8n` directory.
///

4. Start n8n:
```
Expand Down