
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
stanza-extend
Advanced tools
Modern XMPP, with a JSON API.
StanzaJS is a JavaScript/TypeScript library for using modern XMPP, and it does that by exposing everything as JSON. Unless you insist, you have no need to ever see or touch any XML when using StanzaJS.
npm install stanza
import * as XMPP from 'stanza';
const client = XMPP.createClient({
jid: 'echobot@example.com',
password: 'hunter2',
// If you have a .well-known/host-meta.json file for your
// domain, the connection transport config can be skipped.
transports: {
websocket: 'wss://example.com:5281/xmpp-websocket',
bosh: 'https://example.com:5281/http-bind'
}
});
client.on('session:started', () => {
client.getRoster();
client.sendPresence();
});
client.on('chat', msg => {
client.sendMessage({
to: msg.from,
body: 'You sent: ' + msg.body
});
});
client.connect();
MUC Room: discuss@stanzajs.org / Logs
These are related modules that form part of StanzaJS:
| Name | Description | Source |
|---|---|---|
| stanza-shims | Runtime shims used by StanzaJS for node, browsers, and React Native. | Source |
These are some additional modules that are highly recommended for use with StanzaJS:
| Name | Description | Source |
|---|---|---|
| staydown | Render helper that keeps an element scrolled to the bottom based on user intent. | Source |
| webrtc-adapter | Shims browsers to provide a consistent WebRTC API. | Source |
Portions of StanzaJS are derived from prior works. See NOTICE file for details.
If you like this, follow @lancestout on Twitter.
FAQs
Modern XMPP in the browser, with a JSON API
The npm package stanza-extend receives a total of 5 weekly downloads. As such, stanza-extend popularity was classified as not popular.
We found that stanza-extend demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.