![Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility](https://cdn.sanity.io/images/cgdhsj6q/production/97774ea8c88cc8f4bed2766c31994ebc38116948-1664x1366.png?w=400&fit=max&auto=format)
Security News
Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
@thecolvinco/nodejs-amqplib
Advanced tools
A RabbitMQ package with some utils like retryables to use across diferents projects.
import { amqpConnect, retryable, worker, deadLetter } from '@thecolvinco/nodejs-amqplib';
const connectionString = 'amqp://rabbitmq:rabbitmq@localhost:5672';
const args = process.argv.slice(2);
const queueName = args[0] || 'send-invoice-on-shopify-order-created';
const bindingKey = args[1] || 'blom.superapp.1.event.shopify.order-created';
const dlxExchange = args[2] || 'blom.superapp.dlx.direct';
const dlxRoutingKey = args[3] || 'blom.superapp.dlx';
const dlxQueueName = args[4] || 'blom-superapp-dlx-queue';
const workable = (channel) => {
return async (msg) => {
console.info(`Message received ${msg}`);
// Simulate some retryables
if (msg.content.toString() === 'retry') {
await retryable({
channel,
message: msg,
queue: {
name: queueName,
},
retryExchange: {
name: 'retries.exchange',
},
maxRetries: 3,
delay: 1000,
});
} else {
channel.ack(msg);
};
};
};
try {
const connection = await amqpConnect(connectionString);
const channel = await conn.createChannel();
const exchangeData = {
name: 'blom.exchange.topic',
type: 'topic',
};
const queueData = {
name: queueName,
bindingKey,
options: {
durable: true,
deadLetterExchange: dlxExchange,
deadLetterRoutingKey: dlxRoutingKey
},
dlx: {
func: deadLetter,
params: {
channel,
dlxQueue: {
name: dlxQueueName,
},
dlxExchange: {
name: dlxExchange,
type: 'direct',
},
},
},
};
const consumerData = {
onMessage: workable(channel),
options: {
noAck: false
},
};
await worker({
channel,
exchange: exchangeData,
queue: queueData,
consumer: consumerData,
});
console.log("Wating for messages....");
} catch(error) {
console.log(error)
}
import { amqpConnect, producer } from '@thecolvinco/nodejs-amqplib';
const connectionString = 'amqp://rabbitmq:rabbitmq@localhost:5672';
const args = process.argv.slice(2);
try {
const connection = await amqpConnect(connectionString);
const channel = await conn.createChannel();
const message = args[0] || 'Hello world';
const key = args[1] || 'blom.superapp.1.event.shopify.order-created';
const exchange = {
name: 'blom.exchange.topic',
type: 'topic',
};
await producer({
channel,
message,
key,
exchange,
});
console.log(`[x] Sent ${message} to ${exchange.name} with key ${key}`);
connection.close();
} catch (error) {
console.log(error);
}
This package is maintained by TheColvinCo
Code is licensed under the MIT License.
FAQs
RabbitMQ abstraction with some utils
The npm package @thecolvinco/nodejs-amqplib receives a total of 1 weekly downloads. As such, @thecolvinco/nodejs-amqplib popularity was classified as not popular.
We found that @thecolvinco/nodejs-amqplib 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
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
Security News
React's CRA deprecation announcement sparked community criticism over framework recommendations, leading to quick updates acknowledging build tools like Vite as valid alternatives.
Security News
Ransomware payment rates hit an all-time low in 2024 as law enforcement crackdowns, stronger defenses, and shifting policies make attacks riskier and less profitable.