Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
EvaQueue.js provide a unified API across different high performance queue backends, including Kafka, AliMNS
EvaQueue.js provide a unified API across different high performance queue backends, including Kafka, AliMNS or other message queues which could be customized.
Features:
npm install evaqueue ali-mns node-rdkafka
EvaQueue.js will installed as peer dependency, you are free to install queue libs which only required.
NOTE: if install node-rdkafka
met error ld: symbol(s) not found for architecture x86_64
, try below command to fix
CPPFLAGS=-I/usr/local/opt/openssl/include LDFLAGS=-L/usr/local/opt/openssl/lib npm install
Produce a message to queue:
import MQ from 'evaqueue';
import Message from 'evaqueue/message';
const manager = new MQ(
require('./config'),
console,
);
const producer = manager.getProducer();
(async () => {
try {
const msg = await producer.produce(new Message({ foo: 'bar' }));
console.log('[%s] producing %o', producer.name, msg);
} catch (e) {
console.error(e);
}
})();
Consume messages from queue:
import MQ from 'evaqueue';
const manager = new MQ(
require('./config'),
console,
);
const consumer = manager.getConsumer();
(async () => {
await consumer.consuming(
async (err, message) => {
console.log('[%s] consuming %o', consumer.name, message);
},
3,
);
})();
consumer.enableGracefulExit();
Just change config file
{
defaultInstance: 'kafka_default'
}
to
{
defaultInstance: 'mns_default'
}
or switch manually by:
const manager = new MQ(
require('./config'),
console,
);
const consumer = manager.getConsumer('mns_another');
git clone git@github.com:bmqb/EvaQueue.js.git
cd EvaQueue.js
brew install jq
npm install
npm run install:peers
node-rdkafka promisfy codes some from https://github.com/joway/node-kfk
FAQs
EvaQueue.js provide a unified API across different high performance queue backends, including Kafka, AliMNS
We found that evaqueue 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
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.