node-red-contrib-davis 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/nodes/davis/davis.html +9 -22
- package/package.json +1 -1
package/nodes/davis/davis.html
CHANGED
|
@@ -94,32 +94,15 @@
|
|
|
94
94
|
</script>
|
|
95
95
|
|
|
96
96
|
<script type="text/html" data-help-name="davis">
|
|
97
|
-
<p>
|
|
98
|
-
|
|
99
|
-
<h3>Inputs</h3>
|
|
100
|
-
<dl class="message-properties">
|
|
101
|
-
<dt>payload <span class="property-type">any</span></dt>
|
|
102
|
-
<dd>The message payload to send to the connected web clients.</dd>
|
|
103
|
-
<dt class="optional">topic <span class="property-type">string</span></dt>
|
|
104
|
-
<dd>An optional topic for the message.</dd>
|
|
105
|
-
</dl>
|
|
106
|
-
|
|
107
|
-
<h3>Outputs</h3>
|
|
108
|
-
<dl class="message-properties">
|
|
109
|
-
<dt>payload <span class="property-type">any</span></dt>
|
|
110
|
-
<dd>Messages received from connected web clients.</dd>
|
|
111
|
-
<dt>_socketId <span class="property-type">string</span></dt>
|
|
112
|
-
<dd>The Socket.IO client ID that sent the message.</dd>
|
|
113
|
-
</dl>
|
|
114
|
-
|
|
115
|
-
<h3>Details</h3>
|
|
116
|
-
<p>Davis provides a simple way to create Bootstrap-based web user interfaces
|
|
97
|
+
<p>Davis provides a simple way to create Data Visualization on web user interfaces
|
|
117
98
|
that communicate in real-time with your Node-RED flows.</p>
|
|
118
99
|
|
|
100
|
+
<h3>Details</h3>
|
|
119
101
|
<h4>Features:</h4>
|
|
120
102
|
<ul>
|
|
121
|
-
<li>
|
|
122
|
-
<li>
|
|
103
|
+
<li>JSON Data Reader</li>
|
|
104
|
+
<li>JSON Data Query (Filter, Sort and Limit)</li>
|
|
105
|
+
<li>Multiple Chart Visualization (Apache ECharts 6.0)</li>
|
|
123
106
|
<li>Real-time bidirectional WebSocket communication</li>
|
|
124
107
|
<li>Automatic static file serving</li>
|
|
125
108
|
</ul>
|
|
@@ -127,4 +110,8 @@
|
|
|
127
110
|
<h4>File Location:</h4>
|
|
128
111
|
<p>Your web files are stored in:<br>
|
|
129
112
|
<code>~/.node-red/davis/{url}/src/</code></p>
|
|
113
|
+
|
|
114
|
+
<h4>JSON Data File Location:</h4>
|
|
115
|
+
<p>Your JSON data files are stored in:<br>
|
|
116
|
+
<code>~/.node-red/davis/{url}/src/data/</code></p>
|
|
130
117
|
</script>
|