# aws-sqs

> Amazon AWS SQS (Simple Queue Service) library for Node.js that is user-friendly

Latest version **0.0.6** (published 2013-04-30) · 0 weekly downloads

## Install

```sh
npm install aws-sqs
pnpm add aws-sqs
yarn add aws-sqs
bun add aws-sqs
```

## Health

**Score 10/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; low quality score; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.6 |
| Published | 2013-04-30 |
| First published | 2012-06-08 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=0.4.10 |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 26 |
| Author | Modulus |
| Maintainers | zwigby |
| Keywords | amazon, aws, sqs, simple queue service, wrapper, api, queue |

## Links

- npm: https://www.npmjs.com/package/aws-sqs
- Repository: https://github.com/onmodulus/aws-sqs
- Homepage: http://onmodulus.github.com/aws-sqs/symbols/SQS.html
- npm.io page: https://npm.io/package/aws-sqs

## Dependencies (1)

- [aws-lib](https://npm.io/package/aws-lib.md) 0.0.6

## Alternatives

- [cron](https://npm.io/package/cron.md) — 4.9M weekly downloads
- [@vercel/queue](https://npm.io/package/@vercel/queue.md) — 731.6K weekly downloads
- [create-sonicjs](https://npm.io/package/create-sonicjs.md) — 1.6K weekly downloads
- [@exellix/jobs-api](https://npm.io/package/@exellix/jobs-api.md) — 941 weekly downloads
- [@forwardimpact/libskill](https://npm.io/package/@forwardimpact/libskill.md) — 575 weekly downloads

## Recent versions

- 0.0.6 (latest) — 2013-04-30
- 0.0.5 — 2013-04-27
- 0.0.4 — 2013-04-26
- 0.0.3 — 2013-04-12
- 0.0.2 — 2012-06-19
- 0.0.1 — 2012-06-08

## README

[![build status](https://secure.travis-ci.org/onmodulus/aws-sqs.png)](http://travis-ci.org/onmodulus/aws-sqs)
aws-sqs
=======

AWS Simple Queue Service library for Node.js

## Install

    npm install aws-sqs

## Docs
You can checkout the class documentation at [SQS Class](http://onmodulus.github.com/aws-sqs/symbols/SQS.html).

## Simple usage

    var sqs = new SQS('awsId', 'awsSecret');
    sqs.createQueue('testTimeoutQueue', {VisibilityTimeout : 120}, function(err, res) {
      if(err) {
        //handle error
      }
      console.log(res); // something like /158795553855/testTimeoutQueue
    });

---
_Source: https://npm.io/package/aws-sqs · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
