
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.
stompjs-nodejs
Advanced tools
Wrapper for stompjs works with nodejs and with typings
npm i stompjs-nodejs --save
example with active MQ.
import { StompClient } from 'stompjs-nodejs';
const client = new StompClient({
brokerUrl: 'ws://localhost:61614/ws',
user: 'user',
password: 'password',
});
client.subsribe('/topic/name', (msg) => {
console.log('received', msg);
});
client.publish('/topic/name', 'a message to pub');
subsribe and publish will auto connect at first call (lazy init)
but if you want to connect in advance, can do
await client.connect()
Currently it only tested to work with active MQ, I did not test on other MQ lib.
Currently this wrapper only works for pub/sub mode, doesn't work for queue yet.
contributions are welcome.
Special thanks to original authors of stompjs https://github.com/stomp-js/stompjs
FAQs
A nodejs wrapper for stompjs
We found that stompjs-nodejs 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.