Skip to content

Latest commit

 

History

History
55 lines (40 loc) · 1.65 KB

browser-intro.md

File metadata and controls

55 lines (40 loc) · 1.65 KB

@title AWS SDK for JavaScript in the Browser

Getting Started with the SDK in the Browser

Loading the SDK

The quickest way to get started with the SDK is to load it using the hosted package directly from Amazon Web Services. To do this, simply add the following script tag to your HTML pages:

<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1.37.min.js"></script>

You can also download this package by clicking the following link: aws-sdk-2.1.37.min.js

Using Bower

You can also use Bower to install the SDK by typing the following into a terminal window:

bower install aws-sdk-js

Once the SDK is loaded in your page, the module will be available from the global variable AWS (or window.AWS).

Browser Support

The SDK supports all modern web browsers:

Google Chrome28.0+ Microsoft Internet Explorer10.0+
Mozilla Firefox23.0+ Apple Safari5.1+
Opera17.0+ Android Browser4.3+

Next Steps

Now that you have installed and loaded the SDK, continue on to learn how to configure and use the SDK to make requests to API operations on services.

  • {file:browser-configuring.md Configuring the SDK}
  • {file:browser-services.md Working with Services}
  • {file:browser-making-requests.md Making Requests}
  • {file:browser-examples.md Common Examples}
  • {file:browser-building.md Building the SDK}