From e61069806fc5bf97b1410700bb7b5274ea59640e Mon Sep 17 00:00:00 2001 From: Sally deh Date: Fri, 9 Feb 2024 13:30:49 +0100 Subject: [PATCH] fixing npm install npm install n8n g does not work and lead to several issues on fs and patch-package: https://community.n8n.io/t/n8n-install/39983 https://github.com/n8n-io/n8n-nodes-starter/issues/45 I found npx works like a charm so better to just use it here too as it is meant for new commers. --- _snippets/integrations/creating-nodes/testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_snippets/integrations/creating-nodes/testing.md b/_snippets/integrations/creating-nodes/testing.md index 0d5d59af9c3..4a0d1343629 100644 --- a/_snippets/integrations/creating-nodes/testing.md +++ b/_snippets/integrations/creating-nodes/testing.md @@ -2,7 +2,7 @@ You can test your node as you build it by running it in a local n8n instance. 1. Install n8n using npm: ```shell - npm install n8n -g + npx n8n ``` 2. When you are ready to test your node, publish it locally: ```shell