update analysis and utility nodes info style

This commit is contained in:
Dave Conway-Jones
2016-03-02 13:24:56 +00:00
parent eff8327971
commit 88985f4fe7
16 changed files with 33 additions and 33 deletions

View File

@@ -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.

View File

@@ -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>

View File

@@ -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" : {
},