
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
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 1 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.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.