mirror of
https://github.com/node-red/node-red-nodes.git
synced 2025-03-01 10:37:43 +00:00
update analysis and utility nodes info style
This commit is contained in:
@@ -13,15 +13,15 @@ Useful for monitoring command line based processes.
|
||||
Install
|
||||
-------
|
||||
|
||||
Run the following command in the root directory of your Node-RED install
|
||||
Run the following command in your Node-RED user directory - typically `~/.node-red`
|
||||
|
||||
npm install node-red-node-daemon
|
||||
npm i node-red-node-daemon
|
||||
|
||||
|
||||
Usage
|
||||
-----
|
||||
|
||||
Calls out to a long running system command. Sends <b>msg.payload</b> to stdin of the process.
|
||||
Calls out to a long running system command. Sends `msg.payload` to stdin of the process.
|
||||
|
||||
**Note** Only the command itself should be placed in the command field.
|
||||
All parameters **must** be placed in the arguments field.
|
||||
|
@@ -50,7 +50,7 @@
|
||||
</script>
|
||||
|
||||
<script type="text/x-red" data-help-name="daemon">
|
||||
<p>Calls out to a long running system command. Sends <b>msg.payload</b> to stdin of the process.</p>
|
||||
<p>Calls out to a long running system command. Sends <code>msg.payload</code> to stdin of the process.</p>
|
||||
<p>Provides 3 outputs... stdout, stderr, and return code , from the running command.</p>
|
||||
<p>If the called program stops (i.e. a return code is produced), this node can attempt to restart the command.</p>
|
||||
<p><b>Note :</b> when you stop Node-RED running we may not get a chance to kill the called program so it may remain running. You <i>may</i> have to kill it manually.</p>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name" : "node-red-node-daemon",
|
||||
"version" : "0.0.3",
|
||||
"version" : "0.0.4",
|
||||
"description" : "A Node-RED node that runs and monitors a long running system command.",
|
||||
"dependencies" : {
|
||||
},
|
||||
|
@@ -24,9 +24,9 @@
|
||||
<script type="text/x-red" data-help-name="exif">
|
||||
<p>Extract <a href="http://en.wikipedia.org/wiki/Exchangeable_image_file_format">Exif</a> information from JPEG images.</p>
|
||||
<p>This node expects an incoming JPEG image buffer. If Exif data is present,
|
||||
it extracts the data into the <b>msg.exif</b> object.</p>
|
||||
<p>The node then adds location data as <b>msg.location</b>, should the Exif data carry this information.
|
||||
<b>msg.payload</b> remains the original, unmodified image buffer. </p>
|
||||
it extracts the data into the <code>msg.exif</code> object.</p>
|
||||
<p>The node then adds location data as <code>msg.location</code>, should the Exif data carry this information.
|
||||
<code>msg.payload</code> remains the original, unmodified image buffer. </p>
|
||||
</script>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
@@ -6,7 +6,7 @@ A <a href="http://nodered.org" target="_new">Node-RED</a> node to extract Exif i
|
||||
Install
|
||||
-------
|
||||
|
||||
Run the following command in the root directory of your Node-RED install
|
||||
Run the following command in your Node-RED user directory - typically `~/.node-red`
|
||||
|
||||
npm install node-red-node-exif
|
||||
|
||||
@@ -16,8 +16,8 @@ Usage
|
||||
|
||||
Extracts <a href="http://en.wikipedia.org/wiki/Exchangeable_image_file_format">Exif</a> information from JPEG images.
|
||||
|
||||
This node expects an incoming JPEG image as a buffer. If Exif data is present, it extracts the data into a **msg.exif** object.
|
||||
This node expects an incoming JPEG image as a buffer. If Exif data is present, it extracts the data into a `msg.exif` object.
|
||||
|
||||
If the Exif data also contains location information this is extracted as **msg.location**.
|
||||
If the Exif data also contains location information this is extracted as `msg.location`.
|
||||
|
||||
**msg.payload** retains the original, unmodified image buffer.
|
||||
`msg.payload` retains the original, unmodified image buffer.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name" : "node-red-node-exif",
|
||||
"version" : "0.0.4",
|
||||
"version" : "0.0.5",
|
||||
"description" : "A Node-RED node that extracts Exif information from JPEG image buffers.",
|
||||
"dependencies" : {
|
||||
"exif": "0.4.0"
|
||||
|
Reference in New Issue
Block a user