Questions tagged [node-xmpp]
78 questions
1
vote
3 answers
node-xmpp --- Create a Persistant and Private Chatroom
I need to create a Private and Persistent Chat room dynamically via Node that does not automatically delete itself.
I've searched the net and couldn't find much on how to do it. This is the code snippet I use to create the chatroom:
var cl = new…

user3133584
- 21
- 3
1
vote
1 answer
Installing node-xmpp on window 7
I have node --version v0.8.22 on Windows 7. I am trying to install node-xmpp with the command, npm install node-xmpp. I have installed express, log4js and socket.io with npm install, but node-xmpp is throwing the following error.
786 info…

sissonb
- 3,730
- 4
- 27
- 54
1
vote
2 answers
Get HTML page to communicate with node-xmpp/xmpp server
Please keep in mind that I am VERY new to all of this javascript/node.js style of HTML coding. In the past, all I have ever done with HTML is static/information style pages.
I am trying to create an HTML webpage that will take xmpp related…

AeroBuffalo
- 1,126
- 1
- 11
- 31
0
votes
0 answers
Error: self-signed certificate When connecting to google FCM with XMPP protocol
I am trying to connect to google Firebase Messaging with xmpp protocol with Node Js with node-xmpp-client
But I am getting an TLS error
Below is the code:
const XMPP = require("node-xmpp-client");
config = {
id: "push-notify-xmpp",
key:…

Mogileeswar G
- 1
- 1
0
votes
1 answer
How to configure a xmpp pubsub leafnode so that anyone can publish or update item there?
The user romeo@host creates a LeafNode 0c55624367fc10d2548c569782f569dc:downline by this configuration:
("pubsub#deliver_payloads", "true")
("pubsub#notify_config", "false")
("pubsub#notify_delete", "false")
("pubsub#notify_retract",…
0
votes
1 answer
Unable to get socket event in ReactJS from XMPP Strophe
I am new to React JS. I am trying to connect to XMPP Server and get the presence, message event from it. Earlier I used just plain JavaScript and I was able to do that easily, but in case of React JS.
I am able to login to XMPP server with the below…

Rajan
- 2,427
- 10
- 51
- 111
0
votes
0 answers
xmpp client authorization jwt tokens
So Im trying to figure out how I can login to xmpp client with this jwt tokens.
I got no experience with xmpp so when I look online I only see code that login with user and pass.
Anybody can help me with this or lead me to some source on how to do…

aaron1414
- 1
- 1
0
votes
1 answer
NodeJS XMPP over WebSocket server
Title really says it all, I've looked through github and npm and can't find anything still updated or even what I'm looking for at all that can do this. Any suggestions are appreciated!

Dash
- 83
- 2
- 10
0
votes
0 answers
How can I create multiple independent conversations between two users in XMPP Server?
I want to create a chat where multiple independent conversations can be created between two users in my XMPP Server (MongooseIM).
I tried to do it with threads but it does not work since when I log in if the user has messages offline, the server…

user2146556
- 21
- 1
- 6
0
votes
0 answers
Using XMPP Client inside docker container
I am not able to use xmpp client inside a docker container. I used this code it is working very well on my machine but not in a docker container.
var xmpp = require('node-xmpp-client');
var client = new xmpp.Client({
jid: …

Kishore Kadiyala
- 154
- 3
0
votes
1 answer
Electron + xmpp.js: How I can Debug SSL Self-signed error messages?
I am using a combination of electron.js and xmpp.js in order to make my own client. My main project is consisted of these 2 files:
Boostrapping electron on: index.js:
const {app,BrowserWindow,ipcMain,dialog}=require('electron');
// const…

Dimitrios Desyllas
- 9,082
- 15
- 74
- 164
0
votes
1 answer
Create Multiple Jabber Client Echo Bot
Hai Stackoverflowers,
i had try so many ways to fix my problem and i end up with stack over flow
Programming Language:
Typescript
my main goals:
create Client Class as many as i want and can turn on and turn off the Client, the client will be as…

kevin tanzil
- 3
- 4
0
votes
1 answer
Xmpp library for Typescript
I need a javascript XMPP library for my project which I am developing with Typescript. The problem with typescript is when you want to import external javascript libraries, you also need to include type definitions for the external library. That…

theroglu
- 136
- 3
- 12
0
votes
1 answer
troubling getting conversejs 3.2.1 working with node-xmpp running on Ubuntu 16.04
I'm trying to configure conversejs 3.2.1 to work with node-xmpp-bosh running on Ubuntu 16.04. Node version is 4.2.6.
Using default configs found in "bosh.conf.example.js", node-xmpp-bosh starts correctly and is listening on port 5280. This is…

rotor155
- 53
- 7
0
votes
0 answers
NodeJS and data transfer between handlers
Trying to learn Node and I set a task for me: Transport bot, but have some problems:
I can see chat streams from jabber and discrod chat, but I cant find way to send messages from jabber to discrod or reverse because I do not understand how to…

DiWorm
- 3
- 3