Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@highoutput/amqp
Advanced tools
amqp
A simplified abstraction of the AMQP 1.0 protocol
import Amqp from '@highoutput/amqp';
const amqp = new Amqp();
async main() {
await amqp.createWorker(
'queue',
async message => message
);
const client = await rabbit.createClient('queue');
const result = await client('Hello World!');
assert.equal(result, 'Hello World!');
}
main();
import Amqp from '@highoutput/amqp';
const amqp = new Amqp();
async main() {
await amqp.createSubscriber(
'topic.*',
async message => assert.equal('Hello World!')
);
const publish = await rabbit.createPublisher('topic.hello');
publish('Hello World!');
}
main();
FAQs
A simplified client for ActiveMQ
The npm package @highoutput/amqp receives a total of 14 weekly downloads. As such, @highoutput/amqp popularity was classified as not popular.
We found that @highoutput/amqp demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.