From f8ecf587f8390ac6f805a68704db3d0b051f714f Mon Sep 17 00:00:00 2001 From: Valentina Date: Thu, 9 Dec 2021 16:18:06 +0200 Subject: [PATCH] Updating Readme.md --- README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/README.md b/README.md index 09e8d19..2d8eea8 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,31 @@ Example starter module for custom n8n nodes. +## Try it out + +Clone the repo and execute: +``` +cd n8n-nodes-starter +npm install +npm run build +npm link +``` + +After that add it to an N8N installation: +``` +cd .. +mkdir n8n_install +cd n8n_install +npm init +npm install +npm install n8n +npm link n8n-nodes-starter +npx n8n +``` + + ## License [Apache 2.0 with Commons Clause](https://github.com/n8n-io/n8n/blob/master/packages/nodes-base/LICENSE.md) + +