The code examples in this topic show you how to use the AWS SDK for JavaScript (v3) with AWS.
The AWS SDK for JavaScript (v3) provides a JavaScript API for AWS infrastructure services. Using the SDK, you can build applications on top of Amazon S3, Amazon EC2, Amazon DynamoDB, and more.
-
Single-service actions - Code examples that show you how to call individual service functions.
-
Single-service scenarios - Code examples that show you how to accomplish a specific task by calling multiple functions within the same service.
-
Cross-service examples - Sample applications that work across multiple AWS services.
Single-service actions and scenarios are organized by AWS service in the example_code
folder. A README in each folder lists and describes how to run the examples.
Cross-service examples are located in the cross-services folder. A README in each folder describes how to run the example.
- Running this code might result in charges to your AWS account.
- Running the tests might result in charges to your AWS account.
- We recommend that you grant your code the least privilege. At most, grant only the minimum permissions required to perform the task. For more information, see Grant least privilege.
- This code is not tested in every AWS Region. For more information, see AWS Regional Services.
- Install the latest stable version of Node.js.
- Set up a shared configuration file with your credentials. For more information, see the AWS SDK for JavaScript (v3) Developer Guide.
- Install dependencies by running
npm i
from the same path as this document.
Note: Running the tests might result in charges to your AWS account.
You can run tests for a specific service, or for every service in this repository. Choose whether to run unit tests, integration tests, or both.
-
To run unit tests, use the following command:
npm test
-
To run integration tests, use the following command:
npm run integration-test
-
To run tests for a specific service, follow the instructions in the service's README.
If you run tests using the preceding commands, output will be stored in unit_test.log
or integration_test.log
. Errors are still logged to the console.
You can run Biome to statically check for errors.
To run Biome, use the following command:
npm run ci-lint
This example is available in a container image hosted on Amazon Elastic Container Registry (ECR). This image will be pre-loaded with all JavaScript v3 examples with dependencies pre-resolved. It is used for running tests.
- Install and run Docker on your machine.
- Navigate to the root directory of this repository.
- Run
docker build -t <image_name> -f javascriptv3/Dockerfile .
and replace<image_name>
with a name for the image.
- Run
docker run -it -v /Users/corepyle/.aws/credentials:/home/automation/.aws/credentials <image_name>
.-it
launches an interactive terminal.-v ~/.aws...
is optional but recommended. It will mount your local credentials file to the container. - The Dockerfile is configured to automatically run integration tests when the container is run.
Contributions are welcome. To increase the likelihood of your contribution being accepted, please adhere to the JavaScript standards
Every example should be covered by an integration test. Each integration test must run the example and verify that it ran correctly.
To configure Biome in VS Code, follow the instructions here: https://biomejs.dev/guides/getting-started/
- AWS SDK for JavaScript (v3)
- AWS SDK for JavaScript (v3) Developer Guide
- AWS SDK for JavaScript (v3) API Reference
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. SPDX-License-Identifier: Apache-2.0