update social nodes info style

This commit is contained in:
Dave Conway-Jones
2016-03-02 13:26:53 +00:00
parent 0880ad3987
commit b6116abce3
25 changed files with 104 additions and 98 deletions

View File

@@ -11,23 +11,23 @@ You need a valid Pusher App key, secret and id from [http://pusher.com](http://p
Install
-------
Run the following command in the root directory of your Node-RED install. this is usually ~/.node-red
Run the following command in your Node-RED user directory - typically `~/.node-red`
npm install node-red-node-pusher
Usage
-----
###Input
### Input
Pusher input mode. Use this node to subscribe to a Pusher channel/event.
You need a valid Pusher App key.
The node will set **msg.payload** to the message that arrives, and **msg.topic** to the eventname.
The node will set `msg.payload` to the message that arrives, and `msg.topic` to the eventname.
###Output
### Output
Pusher output node for sending messages to a specific channel/event.
You need an App key, secret and ID of a Pusher app.
The node will send the **msg.payload** of the incoming message.
The node will send the `msg.payload` of the incoming message.

View File

@@ -1,6 +1,6 @@
{
"name" : "node-red-node-pusher",
"version" : "0.0.3",
"version" : "0.0.4",
"description" : "A Node-RED node to send and receive messages using Pusher.com",
"dependencies" : {
"pusher": "1.0.5",

View File

@@ -101,8 +101,8 @@
<script type="text/x-red" data-help-name="pusher out">
<p>Pusher output node for sending messages to a specific channel/event.</p>
<p>You need an App key, secret and ID of a Pusher app.</p>
<p>The node will send the <b>msg.payload</b> of the incoming message.</p>
<p>If you leave the eventname blank you can set it using <b>msg.topic</b>.</p>
<p>The node will send the <code>msg.payload</code> of the incoming message.</p>
<p>If you leave the eventname blank you can set it using <code>msg.topic</code>.</p>
</script>
<script type="text/javascript">