JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 492
  • Score
    100M100P100Q122011F

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

Package Exports

  • aws-sqs

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (aws-sqs) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

build status 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.

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
});