Skip to content

Instantly share code, notes, and snippets.

@AlexJReid
AlexJReid / web.js
Created January 5, 2012 21:08
parallel requests to SimpleDB in node
var express = require('express'),
simpledb = require('simpledb'),
Step = require('step'),
sdb = new simpledb.SimpleDB({
keyid: 'your aws key',
secret: 'your aws secret'
}),
app = express.createServer(express.logger()),