Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
bloody-simple-sqs
Advanced tools
A bloody simple interface to Amazon SQS, based on the official AWS SDK.
A bloody simple Amazon SQS client for Node.js, based on the official AWS SDK.
$ npm install bloody-simple-sqs
var SQS = require('bloody-simple-sqs');
var queue = new SQS({
queueName: 'i-am-queue',
accessKeyId: 'AKIA-access-key',
secretAccessKey: 'secret-access-key',
region: 'us-east-1'
});
queue.add({a: 1, b: 2})
.then(function (data) {
console.log('Message sucessfully appended to queue with id ' + data.id);
})
.catch(function (err) {
console.error(err);
});
queue.pollOne()
.then(function (message) {
if (!message) {
console.log('The queue has no messages');
return;
}
console.log(message);
})
.catch(function (err) {
console.error(err);
});
For further information on Bloody Simple SQS methods please refer to the API Docs.
Amazon Simple Queue Service is an excellent queue-as-a-service solution - simpler than the notorious RabbitMQ, yet powerfull, reliable and inexpensive.
AWS provides a Node.js SDK, but it's complex and repetitive. Bloody-simple-sqs aims to hide the complexity under a simple well-defined API, so that the developers focus on using the SQS, rather than understanding the internal mechanisms of AWS-SDK.
MIT
FAQs
A bloody simple interface to Amazon SQS, based on the official AWS SDK.
The npm package bloody-simple-sqs receives a total of 0 weekly downloads. As such, bloody-simple-sqs popularity was classified as not popular.
We found that bloody-simple-sqs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.