Skip to content
/ xmpp-web Public
forked from nioc/xmpp-web

Lightweight web chat client for XMPP server

License

Notifications You must be signed in to change notification settings

mul14/xmpp-web

 
 

Repository files navigation

XMPP Web

license: AGPLv3 GitHub release GitHub downloads GitHub Workflow Status Docker Pulls Docker Image Size (latest by date) GitHub issues by-label

Lightweight web chat client for XMPP server.

Key features

  • Connect to an XMPP server with WebSocket,
  • Chat and groupchat (MUC as defined in XEP-0045),
  • Retrieve contacts (roster) and bookmarked rooms (XEP-0048),
  • Send and receive files over HTTP (XEP-0066, XEP-0363),
  • Handle password protected room,
  • Display chat state notifications: is composing, is paused (XEP-0085),
  • Format messages: bold, italic, striked, link and code inline/block (XEP-0393),
  • Pick emoji,
  • Room creation and configuration,
  • PWA (Progressive Web App) creating user experiences similar to native applications on desktop and mobile devices,
  • Lightweight (600 KB gzipped at the first loading and then less than 10 KB)
  • Guest access /guest?join={jid} (joining a MUC anonymously as described in RFC 4505)

Screenshot desktop Screenshot mobile home Screenshot mobile chat Screenshot guest join

Installation

XMPP Web can be installed:

  • With provided Ansible role,
  • From archive:
  • From Docker image (docker pull nioc/xmpp-web, based on nginx):
    • as standalone service:
      docker run -it -p 80:80 --rm \
      -e XMPP_WS=https://domain-xmpp.ltd:5281/xmpp-websocket \
      -e APP_DEFAULT_DOMAIN=domain-xmpp.ltd \
      --name xmpp-web-1 nioc/xmpp-web
    • in a docker-compose:
      version: "3.4"
      services:
        xmpp-web:
          image: nioc/xmpp-web:latest
          ports:
            - "80:80"
          environment: 
            - XMPP_WS=https://domain-xmpp.ltd:5281/xmpp-websocket
            - APP_DEFAULT_DOMAIN=domain-xmpp.ltd
  • From source (git clone, npm build, etc...)

Configuration

local.js attribute Environment (Docker) Default (initial value) Description
name APP_NAME "XMPP web" Application name
transports.websocket APP_WS "wss://chat.domain-web.ltd/xmpp-websocket" Websocket endpoint used by application (proxy or direct XMPP server)
hasRegisteredAccess APP_REGISTERED_ACCESS true Set to false to disable registered users components (guest access only)
hasGuestAccess APP_GUEST_ACCESS true Set to false to disable guest users components
anonymousHost XMPP_ANON_HOST null Virtual host used for guest access (anonymous)
isTransportsUserAllowed APP_IS_TRANSPORTS_USER_ALLOWED false Allow user to set endpoints on the fly in login component
hasHttpAutoDiscovery APP_HTTP_AUTODISCOVERY false Allow to retrieve a .well-known/host-meta.json if user log on a different domain
resource APP_RESOURCE "Web XMPP" Resource (client) affected to user
defaultDomain APP_DEFAULT_DOMAIN "domain-xmpp.ltd" Domain used if user do not provide a full jid
defaultMuc APP_DEFAULT_MUC null Autocomplete MUC address (ex: conference.domain.ltd) if user do not provide a full room jid (join & create)
isStylingDisabled APP_IS_STYLING_DISABLED false Set to true for disable messages styling
hasSendingEnterKey APP_HAS_SENDING_ENTER_KEY false If true, Enter key sends message, it adds new line otherwise (Control+Enter always sends message)
N/A XMPP_WS "http://localhost:5280/xmpp-websocket" Websocket endpoint proxyfied by Nginx (on a docker installation)

Credits

  • Nioc - Initial work

See also the list of contributors to this project.

This project is powered by the following components:

License

This project is licensed under the GNU Affero General Public License v3.0 - see the LICENSE file for details

About

Lightweight web chat client for XMPP server

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Vue 50.0%
  • JavaScript 46.0%
  • SCSS 3.3%
  • HTML 0.7%