41 lines
804 B
JavaScript
41 lines
804 B
JavaScript
/* eslint-disable no-console, n/no-extraneous-import*/
|
|
|
|
import { component, xml } from "@xmpp/component";
|
|
import debug from "@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) => {
|
|
if (stanza.is("message")) {
|
|
await xmpp.stop();
|
|
}
|
|
});
|
|
|
|
xmpp.on("online", async (address) => {
|
|
console.log("online as", address.toString());
|
|
|
|
// Sends a chat message to itself
|
|
const message = xml(
|
|
"message",
|
|
{ type: "chat", to: address },
|
|
xml("body", {}, "hello world"),
|
|
);
|
|
await xmpp.send(message);
|
|
});
|
|
|
|
await xmpp.start();
|