How to receive messages from ejabberd in node-xmpp?

515 Views Asked by At

I can send messages to ejabberd, but how receive - i have no idea. Maybe someone has live example?

1

There are 1 best solutions below

0
On BEST ANSWER

Solution is using "stanza" event. Here is example:

cl.addListener('stanza', function(stanza) {
    connection.write(stanza.children[1].children);
    console.log(stanza.children[1].children);
});