aws-es6-promise

AWS SDK ES6 Promise wrapper

Usage no npm install needed!

<script type="module">
  import awsEs6Promise from 'https://cdn.skypack.dev/aws-es6-promise';
</script>

README

AWS Promise

A small wrapper around the AWS SDK to use ES6 Promises instead of callbacks.

Installation

npm install aws-promise

Usage

var AWSPromise = require('aws-es6-promise')

var ec2 = new AWSPromise.EC2()

ec2.describeInstances({ params })
  .then(function(data) {
    console.log(data)
  })