Questions tagged [node-xmpp]
78 questions
2
votes
2 answers
Does anyone have an updated guide for installing node-xmpp?
Does anyone have an updated guide for installing node-xmpp from start to finish on either Cent OS or Ubuntu's latest builds?
I have attempted installing but continue to get the following error:
Cannot load StringPrep-0.1.0 bindings. You may need to…

Zack Grindall
- 31
- 3
2
votes
0 answers
How to add custom auth mechanism for node-xmpp Client?
Can I use customs auth mechanisms in node-xmpp without forking it? I need to auth with mechanism very similar to X-OAUTH2, but with other title and simpler auth() method( see code for more information).

Rnd_d
- 557
- 2
- 7
- 20
2
votes
2 answers
Disconnect node-xmpp client
I am looking at node-xmpp and node-simple-xmpp and I am trying to make a simple client.
Everything works fine, except the disconnect.
I have made the following file after the example of simple-xmpp:
var xmpp =…

mutil
- 3,205
- 1
- 27
- 34
2
votes
1 answer
Retrieve roster in node-xmpp
I'm having trouble understanding how to retrieve an XMPP roster (and eventually the presence state of each contact) in node-xmpp (GTalk account).
My example code can login and connect, but I'm a bit lost as to what to send and listen for:
var xmpp =…

7zark7
- 10,015
- 5
- 39
- 54
1
vote
1 answer
How to use stream management acks in xmpp.js (in react-native) with MongooseIM (as chat server)?
I am using xmpp.js as xmpp chat client inside react-native for both android+ios with MongooseIM as chat server. I want to implement stream management acks in the App. But according to the issue#540, xmpp.js doesn't officially support stream…

Shubham1164
- 357
- 6
- 16
1
vote
1 answer
node-xmpp-server vs node-xmpp-client
I'm in the process creating sample chat app that need to works both in mobile and web with node application and ejabbered server using xmpp protocol.using xmpp protocol for the node-ejabbered connection I am facing confusion with the several modules…

user10269224
- 73
- 10
1
vote
1 answer
issue while authentication and registration node-xmpp
I am trying to register a new user through node-xmpp from node.js to an ejabberd but the authentication and registration events are not invoking neither it is not connecting.
var clientXMPP = require('node-xmpp-client');
var serverXMPP =…

JN_newbie
- 5,492
- 14
- 59
- 97
1
vote
2 answers
how to create node xmpp sever that communicate with android chat applicaion
i want to create android and iphone chat app, and i want to use XMPP using Nodejs. so i don't know about how node-xmpp-server will communicate with android app.
can node-xmpp-server can communicate with android app? if yes than, how can i create…

Vinay Pandya
- 3,020
- 2
- 26
- 42
1
vote
1 answer
Unable to receive upstream GCM messages with Node.js + XMPP
I'm new to node.js and XMPP but not Javascript or GCM. I'm unable to receive upstream messages using node-xmpp and none of the callbacks are called, not even error. I've looked through the other SO threads but none of the solutions have worked. Here…

Nick
- 45
- 4
1
vote
0 answers
How do I get a JID from a known gmail address using node-xmpp (or similar node project)
I'm building a simple instant messenger for my website using node-xmpp. I have gmail addresses of people who have registered but often these don't match up to the users JID. For example their email address might be 123@gmail.com but their jid is…

silkcom
- 492
- 1
- 5
- 14
1
vote
1 answer
Node.js XMPP client Implementation through Heroku does not connect
I have implemented an XMPP client within Node.js (using node-xmpp module) to send and receive notifications from an Android Client:
var xmpp = require('node-xmpp');
var options =
{
type: 'client',
jid:…

Pantelis Ieronimakis
- 131
- 1
- 2
- 12
1
vote
1 answer
How to construct a subscription message for XMPP in NodeJS package?
I'm using node-xmpp-client package to connect to an XMPP service. The service publishes messages when it receives them from some external source. My goal:
Connect to the service
Get authenticated
Subscribe to some nodes that I'm interested in.…

Lee
- 2,874
- 3
- 27
- 51
1
vote
1 answer
Using node-xmpp to show a user as online through Adium
I am running a local ejabberd 2 server and I have 2 users. jeremy@pbx.dev and billy@pbx.dev. Both users have each other on their rosters added from the ejabberd admin webportal.
I'm using adium on OSX logged in with the jeremy account. I would like…

jeremywoertink
- 2,281
- 1
- 23
- 29
1
vote
1 answer
MeteorJS + npm: Cannot find module 'node-xmpp'
I followed this guide on http://meteorhacks.com/complete-npm-integration-for-meteor.html on how to use npm packages with meteor. Now I have this
packages.json
{
"node-xmpp": "0.10.0"
}
server.js
var xmpp =…

iTake
- 317
- 1
- 4
- 14
1
vote
1 answer
Generate node-xmpp script for browser
I am developing an application on php. I need a chat on xmpp nodejs. Sending a message will go from web page.
I found enter link description here. In terminal everything works fine. But how do I attach client script to the browser?
I generate script…

Alexander Boroda
- 11
- 3