Amazon Embraces Node.js
Amazon has released a developer preview SDK for deploying JavaScript applications running on Node.js. The development kit comes as a NPM module (ZIP) which is installed on Node.js then called in order to access a number of AWS services: EC2, S3, DynamoDB, and Simple Workflow.
Creating an EC2 service is done as following:
var AWS = require('aws-sdk');
var ec2 = new AWS.EC2({region: 'us-west-2'});
Service calls are asynchronous requiring a callback as shown in the next sample:
var request = ec2.client.describeInstances();
// register callbacks on request to retrieve response data
request.done(function(response) {
console.log(response.data);
});
While a leader in cloud computing in many areas, Amazon AWS is among the latest to support Node.js. Windows Azure, Cloud Foundry, and Heroku have supported server-side JavaScript programming for some time. A Node wiki entry maintains a long list of managed and self-managed providers for Node.js.
Educational Content
Intro to CLP with core.logic
Ryan Senior Jun 18, 2013
Spock: A Highly Logical Way To Test
Howard Lewis Ship Jun 18, 2013
Java Garbage Collection Distilled
Martin Thompson Jun 17, 2013
C++11 The Future is Here
Bjarne Stroustrup Jun 16, 2013
The Big Data Revolution
Claudia Perlich Jun 16, 2013




Hello stranger!
You need to Register an InfoQ account or Login to post comments. But there's so much more behind being registered.Get the most out of the InfoQ experience.
Tell us what you think