node-red-nodes/social/xmpp
Dave Conway-Jones f7be874e2c
fix linting for grunt
2021-03-12 09:36:20 +00:00
..
icons resize a couple of icons 2014-06-07 08:31:34 +01:00
92-xmpp.html Add room password, better error / status reporting 2021-03-01 13:40:14 +00:00
92-xmpp.js fix linting for grunt 2021-03-12 09:36:20 +00:00
LICENSE Update licenses and packages for all nodes 2016-11-06 20:26:19 +00:00
README.md update social nodes info style 2016-03-02 13:27:52 +00:00
package.json fix linting for grunt 2021-03-12 09:36:20 +00:00

README.md

node-red-node-xmpp

A Node-RED node to talk to an XMPP server.

Install

Run the following command in your Node-RED user directory - typically ~/.node-red

npm install node-red-node-xmpp

Usage

Provides two nodes - one to send messages, and one to receive.

Receive

Connects to an XMPP server to receive messages.

The Buddy field is the id of the buddy or room you want to receive messages from.

Incoming messages will appear as msg.payload on the first output, while msg.topic will contain who it is from.

The second output will show the presence and status of a user in msg.payload. Again msg.topic will hold the user.

Send

Connects to an XMPP server to send messages.

The To field is optional. If not set the msg.topic property of the message is used to set that value.

If you are joining a chat room then the To field must be filled in with the room name.

You may also send a msg with msg.presence to set your presence to one of

  1. chat
  2. away
  3. dnd
  4. xa

If you do this then the msg.payload is used to set your status message.