Skip to content

Commit 5a8c60e

Browse files
author
Caolan McMahon
committed
add AMD support
1 parent 4351b56 commit 5a8c60e

File tree

5 files changed

+87
-46
lines changed

5 files changed

+87
-46
lines changed

README.md

+19-17
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,25 @@ callback as the last argument of your async function.
1414

1515
## Quick Examples
1616

17-
async.map(['file1','file2','file3'], fs.stat, function(err, results){
18-
// results is now an array of stats for each file
19-
});
20-
21-
async.filter(['file1','file2','file3'], path.exists, function(results){
22-
// results now equals an array of the existing files
23-
});
24-
25-
async.parallel([
26-
function(){ ... },
27-
function(){ ... }
28-
], callback);
29-
30-
async.series([
31-
function(){ ... },
32-
function(){ ... }
33-
]);
17+
```javascript
18+
async.map(['file1','file2','file3'], fs.stat, function(err, results){
19+
// results is now an array of stats for each file
20+
});
21+
22+
async.filter(['file1','file2','file3'], path.exists, function(results){
23+
// results now equals an array of the existing files
24+
});
25+
26+
async.parallel([
27+
function(){ ... },
28+
function(){ ... }
29+
], callback);
30+
31+
async.series([
32+
function(){ ... },
33+
function(){ ... }
34+
]);
35+
```
3436

3537
There are many more functions available so take a look at the docs below for a
3638
full list. This module aims to be comprehensive, so if you feel anything is

index.js

-3
This file was deleted.

lib/async.js

+15-7
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,6 @@
77
var root = this,
88
previous_async = root.async;
99

10-
if (typeof module !== 'undefined' && module.exports) {
11-
module.exports = async;
12-
}
13-
else {
14-
root.async = async;
15-
}
16-
1710
async.noConflict = function () {
1811
root.async = previous_async;
1912
return async;
@@ -689,4 +682,19 @@
689682
};
690683
};
691684

685+
// AMD / RequireJS
686+
if (typeof define !== 'undefined' && define.amd) {
687+
define('async', [], function () {
688+
return async;
689+
});
690+
}
691+
// Node.js
692+
else if (typeof module !== 'undefined' && module.exports) {
693+
module.exports = async;
694+
}
695+
// included directly via <script> tag
696+
else {
697+
root.async = async;
698+
}
699+
692700
}());

package.json

+23-19
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,25 @@
1-
{ "name": "async"
2-
, "description": "Higher-order functions and common patterns for asynchronous code"
3-
, "main": "./index"
4-
, "author": "Caolan McMahon"
5-
, "version": "0.1.22"
6-
, "repository" :
7-
{ "type" : "git"
8-
, "url" : "http://github.com/caolan/async.git"
9-
}
10-
, "bugs" : { "url" : "http://github.com/caolan/async/issues" }
11-
, "licenses" :
12-
[ { "type" : "MIT"
13-
, "url" : "http://github.com/caolan/async/raw/master/LICENSE"
1+
{
2+
"name": "async",
3+
"description": "Higher-order functions and common patterns for asynchronous code",
4+
"main": "./lib/async",
5+
"author": "Caolan McMahon",
6+
"version": "0.1.23",
7+
"repository" : {
8+
"type" : "git",
9+
"url" : "http://github.com/caolan/async.git"
10+
},
11+
"bugs" : {
12+
"url" : "http://github.com/caolan/async/issues"
13+
},
14+
"licenses" : [
15+
{
16+
"type" : "MIT",
17+
"url" : "http://github.com/caolan/async/raw/master/LICENSE"
18+
}
19+
],
20+
"devDependencies": {
21+
"nodeunit": ">0.0.0",
22+
"uglify-js": "1.2.x",
23+
"nodelint": ">0.0.0"
1424
}
15-
]
16-
, "devDependencies":
17-
{ "nodeunit": ">0.0.0"
18-
, "uglify-js": "1.2.x"
19-
, "nodelint": ">0.0.0"
20-
}
2125
}

test/test-async.js

+30
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,36 @@ exports['auto'] = function(test){
101101
});
102102
};
103103

104+
exports['auto petrify'] = function (test) {
105+
var callOrder = [];
106+
async.auto({
107+
task1: ['task2', function (callback) {
108+
setTimeout(function () {
109+
callOrder.push('task1');
110+
callback();
111+
}, 100);
112+
}],
113+
task2: function (callback) {
114+
setTimeout(function () {
115+
callOrder.push('task2');
116+
callback();
117+
}, 200);
118+
},
119+
task3: ['task2', function (callback) {
120+
callOrder.push('task3');
121+
callback();
122+
}],
123+
task4: ['task1', 'task2', function (callback) {
124+
callOrder.push('task4');
125+
callback();
126+
}]
127+
},
128+
function (err) {
129+
test.same(callOrder, ['task2', 'task3', 'task1', 'task4']);
130+
test.done();
131+
});
132+
};
133+
104134
exports['auto results'] = function(test){
105135
var callOrder = [];
106136
async.auto({

0 commit comments

Comments
 (0)