aws-sdk-then

1.1.0 • Public • Published

aws-sdk-then

NPM version Build status Test coverage Dependency Status License Downloads

Monkey patches the AWS SDK so that it returns promises. Similar to aws-sdk-promise with some philosophical differences:

  • Uses native-or-bluebird.
  • Does not return the SDK, so AWS SDK will not be a peer dependency.
  • Only supports node v4+
  • You don't have to do .promise() to return the promise
  • Tests

Do not use this in modules, only your apps!

Usage:

const AWS = require('aws-sdk')
 
// patch the AWS instance
require('aws-sdk-then').patch(AWS)
 
// create a new S3 instance
const S3 = new AWS.S3()
 
// use it
S3.getObject({
  Bucket: 'whatever',
  Key: 'whatever'
}).then(result => {
 
})

Readme

Keywords

Package Sidebar

Install

npm i aws-sdk-then

Weekly Downloads

10

Version

1.1.0

License

MIT

Last publish

Collaborators

  • jongleberry