npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

sqs-utils

v1.0.0

Published

Amazon SQS applications without the boilerplate.

Readme

sqs-utils

Build Amazon SQS-based applications without the boilerplate. SQSUtils provides you with everything you need to poll and send messages to Amazon AWS.

Installation

npm install sqs-utils

Usage

Create a new SQSUtils instance and tell it which SQS queue to use:

const SQSUtils = require('sqs-utils');

const queue = new SQSUtils({
  queueUrl: 'https://sqs.eu-west-1.amazonaws.com/account-id/queue-name'
});

Credentials

By default the library will look for AWS credentials in the places specified by the AWS SDK. The simplest option is to export your credentials as environment variables:

export AWS_SECRET_ACCESS_KEY=...
export AWS_ACCESS_KEY_ID=...

Alternatively you can provide your credentials upon creation of any new SQSUtils instance:

const queue = new SQSUtils({
  accessKeyId: 'AWS-ACCESS-KEY-ID',
  secretAccessKey: 'AWS-ACCESS-KEY',
  region: 'AWS-REGION',
  queueUrl: 'https://sqs.eu-west-1.amazonaws.com/account-id/queue-name'
});

You can also provide a pre-configured instance of the AWS SQS client:

const queue = new SQSUtils({
  accessKeyId: 'AWS-ACCESS-KEY-ID',
  secretAccessKey: 'AWS-ACCESS-KEY',
  region: 'AWS-REGION',
  queueUrl: 'https://sqs.eu-west-1.amazonaws.com/account-id/queue-name'
});

Continuous polling

This uses sqs-consumer to continuously poll the queue for messages. Just define a function that receives an SQS message and call a callback when the message has been processed.

queue.listen({
    visibilityTimeout: 300,
    handleMessage: function(message, done) {
        // Do your message handling in here
        console.log(message);
        // Remove the message from the queue
        done();
    },
    handleError: function(err) {
        // Handle errors
        console.log(err);
    }
});
  • The queue is polled continuously for messages using long polling.
  • Messages are deleted from the queue once done() is called.
  • Calling done(err) with an error object will cause the message to be left on the queue. An SQS redrive policy can be used to move messages that cannot be processed to a dead letter queue.

To stop listening for new messages simply call .stop():

queue.stop();

Polling a single message

You can also poll the single next message from the queue.

queue.receiveMessage({
    visibilityTimeout: 300
}, function(err, data) {
    console.log(data);
});

Sending messages

To send new messages to the queue use .sendMessage():

queue.sendMessage({
    message: { text: 'hello' },
    delaySeconds: 0
}, function(err) {
    // Error handling here...
});

License

MIT