From 8b8358372b1a043e2e4588bc6494bef7977ea3e8 Mon Sep 17 00:00:00 2001 From: "sumit shinde ( Roni )" <110285294+sumitshinde-84@users.noreply.github.com> Date: Fri, 11 Oct 2024 14:44:58 +0530 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Zeger-Jan van de Weg --- src/node-red/getting-started/building-node-red-plugin.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/node-red/getting-started/building-node-red-plugin.md b/src/node-red/getting-started/building-node-red-plugin.md index f8b930fbcc..e93d8a754e 100644 --- a/src/node-red/getting-started/building-node-red-plugin.md +++ b/src/node-red/getting-started/building-node-red-plugin.md @@ -1,6 +1,6 @@ --- eleventyNavigation: - key: Node-RED Plugin + key: Node-RED Plugins order: 3 parent: Getting Started meta: @@ -13,9 +13,9 @@ meta: This documentation explains Node-RED plugins and their differences from nodes. It includes a practical example of creating a plugin that displays deployment information, such as the total deployment count and the timestamp of the last deployment, to help you gain a better understanding. -## What Node-RED Plugins Are? +## What Are Node-RED Plugins? -Node-RED plugins are powerful npm modules designed to extend the functionality of the Node-RED editor and runtime. They enable developers to customize and enhance the Node-RED environment by adding sidebar features, modifying existing ones, or integrating with various tools and services. These plugins can create custom panels or offer additional configuration options tailored to user needs. +Node-RED plugins are NPM modules designed to extend the functionality of the Node-RED editor and runtime. They enable developers to customize and enhance the Node-RED environment by adding sidebar features, modifying existing ones, or integrating with various tools and services. These plugins can create custom panels or offer additional configuration options tailored to user needs. For example, imagine a plugin introducing a new sidebar to the Node-RED editor to monitor system performance. This plugin could provide real-time insights into CPU and memory usage, helping developers identify bottlenecks and optimize their flows effectively.