The source is available for download from GitHub. Alternatively, you can install using npm:

$ npm install –save async

As well as using Bower:

$ bower install async

Example:

var async = require("async");
async.parallel([
    function(callback) { ... },
    function(callback) { ... }
], function(err, results) {
    // optional callback
});