AWS Developer Tools Blog
Tag: JavaScript
Modular packages in AWS SDK for JavaScript
As of December 15th, 2020, the AWS SDK for JavaScript, version 3 (v3) is generally available. On October 19th, 2020, we published the Release Candidate (RC) of the AWS SDK for JavaScript, version 3 (v3). One of the major changes in the JavaScript SDK v3 is modularized packages. This blog post explains why we decided to […]
Introducing Middleware Stack in Modular AWS SDK for JavaScript
One of the major changes in v3 is introduction of the middleware stack, which customizes the SDK behavior by modifying the middleware. In this blog post we’d like to describe how you can use this feature in detail.
Modular AWS SDK for JavaScript – Release Candidate
As of December 15th, 2020, the AWS SDK for JavaScript, version 3 (v3) is generally available. We’re happy to announce the Release Candidate (RC) of the AWS SDK for JavaScript, version 3 (v3). This RC follows the Developer preview release of the JavaScript SDK. It is a major rewrite of the version 2.x code base, and […]
Introducing support for Amazon S3 Select in the AWS SDK for JavaScript
We’re excited to announce support for the Amazon Simple Storage Service (Amazon S3) selectObjectContent API with event streams in the AWS SDK for JavaScript. Using Amazon S3 Select, you can query for a subset of data from an S3 object by using simple SQL expressions. Amazon S3 streams the responses as a series of events, […]
Creating and Deploying a Serverless Web Application with CloudFormation and Ember.js
Serverless computing enables you to build scalable and cost-effective applications that scale up or down automatically without provisioning, scaling, and managing servers. You can use AWS Lambda to execute your back-end application code, Amazon API Gateway for a fully managed service to create, publish, maintain, monitor, and secure your REST API, and Amazon S3 to […]
React Native Support in the AWS SDK for JavaScript
We’re excited to announce React Native support in the AWS SDK for JavaScript. You can now access all services that are currently supported in the AWS SDK for JavaScript from within a React Native application. You can configure Amazon Cognito Identity as the authentication provider by using the same Amazon Cognito Identity credentials you might […]
Using webpack and the AWS SDK for JavaScript to Create and Bundle an Application – Part 2
In the previous post in this series, we introduced how to use webpack and the AWS SDK for JavaScript to create and bundle an application. In this post, we’re going to dig a little bit into other features, such as creating bundles with only the AWS services you need, and generating bundles that will also […]
Using webpack and the AWS SDK for JavaScript to Create and Bundle an Application – Part 1
We introduced support for webpack in version 2.6.1 of the AWS SDK for JavaScript. Using tools such as webpack with the SDK give you a way to bundle your JavaScript modules so that you can write modularized code for the browser. This post will walk through how to create and bundle a simple application that […]
AWS Lambda Support for Node.js 4.3.2 Runtime
We are pleased to announce that in conjunction with the availability of Node.js 4.3.2 in AWS Lambda, Version 2.3.2 of the AWS SDK for JavaScript (in both Node.js and in the browser) supports the passing in of “nodejs4.3” as a value for the Runtime parameter for the createFunction and updateFunctionConfiguration operations. Now that the Node.js […]
Support for Promises in the SDK
Today’s release of the AWS SDK for JavaScript (v2.3.0) introduces support for promises when calling service operations. Promises provide an alternative to the use of a callback function to manage asynchronous flow. They allow treating asynchronous calls as a variable, simplifying error handling and providing greater control over handling results from asynchronous calls. For more […]