From 007f2d7c60a3a86d2aee5e9ecdf60c33d4fbf7c0 Mon Sep 17 00:00:00 2001 From: Gerardo Marx Date: Thu, 28 Jul 2022 21:50:04 -0500 Subject: [PATCH] node-RED installation and configuration --- README.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7a1489e..eac1ae6 100644 --- a/README.md +++ b/README.md @@ -65,8 +65,19 @@ sudo apt install npm Then, let us install the *Node-RED* app and the *Dashboard* complement by using the *Node Package Manager*: - npm install node-red - npm install node-red-dashboard +``` +npm install node-red +npm install node-red-dashboard +``` + +now, we require to run in background the app and verify that *node-RED* is runnig: +``` +node-red & +sudo netstat -plnt +``` + + + here