
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.
A simple object pattern based message broker.
npm install pmb
pmb
var pmb = require('pmb').server({ // Optional config object
ip: '0.0.0.0',
port: 6789,
tls: false,
timeout : 60000
});
pmb.server // Server object
pmb.patterns // Topics and their pattern matchers
var pmb = require('pattern-message-broker').client({ // Optional config object
ip: '0.0.0.0',
port: 6789,
tls: false,
timeout : 60000,
});
// Connect to the server and start requesting messages with the given pattern in the given topics
// Pattern (Object, Optional, Defaults to an empty object)
// An object expressing required properties to be matched.
// property: '*' denotes that the property only must exist.
// Topic (String or Array, Optional, Defaults to: 'default')
// Topic or topics to receive messages from.
// Processor (Function. required)
//
pmb.receive({cmd:'test'}, 'default', function(meta, data){
});
FAQs
An object pattern based message broker.
The npm package pmb receives a total of 10 weekly downloads. As such, pmb popularity was classified as not popular.
We found that pmb 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.