
Research
Security News
The Landscape of Malicious Open Source Packages: 2025 Mid‑Year Threat Report
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
Antenna is a publish/subscribe middleware layer for Node. Applications can be constructed by using middleware and defining routes.
This architecture has been proven effective by Express, which provides HTTP middleware. Antenna adopts this approach, repurposing it for use with a message bus, allowing listeners to be built quickly and easily, using patterns familiar to Node.js developers.
$ npm install antenna
var antenna = require('antenna');
var app = antenna();
app.listen('events/:event', function(msg, next) {
console.log('got event: ' + msg.params.event);
});
Adapters are used to connect to message buses, receiving messages and dispatching those messages to the application for processing.
The following table lists commonly used adapters:
Adapter | Developer |
---|---|
AMQP | Jared Hanson |
$ npm install
$ make test
Copyright (c) 2014 Jared Hanson <http://jaredhanson.net/>
FAQs
Ubiquitous message bus for Node.js.
The npm package antenna receives a total of 3 weekly downloads. As such, antenna popularity was classified as not popular.
We found that antenna 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.
Research
Security News
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
Security News
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.