How to use the @xmpp/component.component function in @xmpp/component

To help you get started, we’ve selected a few @xmpp/component examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github xmppjs / xmpp.js / packages / component / example.js View on Github external
/* eslint-disable node/no-extraneous-require */

'use strict'

const {component, xml} = require('@xmpp/component')
const debug = require('@xmpp/debug')

const xmpp = component({
  service: 'xmpp://localhost:5347',
  domain: 'component.localhost',
  password: 'mysecretcomponentpassword',
})

debug(xmpp, true)

xmpp.on('error', err => {
  console.error(err)
})

xmpp.on('offline', () => {
  console.log('offline')
})

xmpp.on('stanza', async stanza => {

@xmpp/component

XMPP component for JavaScript

ISC
Latest version published 3 years ago

Package Health Score

53 / 100
Full package analysis