@xmpp/middleware

XMPP middleware for JavaScript

Usage no npm install needed!

<script type="module">
  import xmppMiddleware from 'https://cdn.skypack.dev/@xmpp/middleware';
</script>

README

middleware

Middleware for @xmpp/client and @xmpp/component.

Supports Node.js and browsers.

Install

npm install @xmpp/middleware

Usage

const { Client } = require("@xmpp/client");
const middleware = require("@xmpp/middlware");

const client = new Client();
const app = middleware({ entity: client });

use

The use method registers a middleware for incoming stanzas.

app.use((ctx, next) => {});

filter

The filter method registers a middleware for outgoing stanzas.

app.filter((ctx, next) => {});