The setps to install , configure and test a Openfire XMPP server was discussed in my previous blog . It also contained the java client code to interact with the XMPP server like connect , send presence , get and send message etc .
This article will describe the process of making a web based XMPP client that
Converse.js
Converse.js is a free and open-source XMPP chat client written in Javascript . Steps to get the xmpp javascript client working
- get the repo access from github
mkdir xmppclient cd xmppclient git init git remote add origin git@github.com:username/repo.git git fetch
- npm install and update
sudo apt-get install npm npm install -g http-server node-inspector forever nodemon
- Make the project
make dev forever in ubuntu
or
make -f Makefile.win dev in windows
or
npm install bower update
HTTP Bosh
-tbd-