# Async.js
Async is a utility module which provides straight-forward, powerful functions
for working with asynchronous JavaScript. Although originally designed for
use with [node.js](http://nodejs.org), it can also be used directly in the
browser. Also supports [component](https://github.com/component/component).
Async provides around 20 functions that include the usual 'functional'
suspects (map, reduce, filter, each…) as well as some common patterns
for asynchronous control flow (parallel, series, waterfall…). All these
functions assume you follow the node.js convention of providing a single
callback as the last argument of your async function.
## Quick Examples
```javascript
async.map(['file1','file2','file3'], fs.stat, function(err, results){
// results is now an array of stats for each file
});
async.filter(['file1','file2','file3'], fs.exists, function(results){
// results now equals an array of the existing files
});
async.parallel([
function(){ ... },
function(){ ... }
], callback);
async.series([
function(){ ... },
function(){ ... }
]);
```
There are many more functions available so take a look at the docs below for a
full list. This module aims to be comprehensive, so if you feel anything is
missing please create a GitHub issue for it.
## Common Pitfalls
### Binding a context to an iterator
This section is really about bind, not about async. If you are wondering how to
make async execute your iterators in a given context, or are confused as to why
a method of another library isn't working as an iterator, study this example:
```js
// Here is a simple object with an (unnecessarily roundabout) squaring method
var AsyncSquaringLibrary = {
squareExponent: 2,
square: function(number, callback){
var result = Math.pow(number, this.squareExponent);
setTimeout(function(){
callback(null, result);
}, 200);
}
};
async.map([1, 2, 3], AsyncSquaringLibrary.square, function(err, result){
// result is [NaN, NaN, NaN]
// This fails because the `this.squareExponent` expression in the square
// function is not evaluated in the context of AsyncSquaringLibrary, and is
// therefore undefined.
});
async.map([1, 2, 3], AsyncSquaringLibrary.square.bind(AsyncSquaringLibrary), function(err, result){
// result is [1, 4, 9]
// With the help of bind we can attach a context to the iterator before
// passing it to async. Now the square function will be executed in its
// 'home' AsyncSquaringLibrary context and the value of `this.squareExponent`
// will be as expected.
});
```
## Download
The source is available for download from
[GitHub](http://github.com/caolan/async).
Alternatively, you can install using Node Package Manager (npm):
npm install async
__Development:__ [async.js](https://github.com/caolan/async/raw/master/lib/async.js) - 29.6kb Uncompressed
## In the Browser
So far it's been tested in IE6, IE7, IE8, FF3.6 and Chrome 5. Usage:
```html
<script type="text/javascript" src="async.js"></script>
<script type="text/javascript">
async.map(data, asyncProcess, function(err, results){
alert(results);
});
</script>
```
## Documentation
### Collections
* [each](#each)
* [map](#map)
* [filter](#filter)
* [reject](#reject)
* [reduce](#reduce)
* [detect](#detect)
* [sortBy](#sortBy)
* [some](#some)
* [every](#every)
* [concat](#concat)
### Control Flow
* [series](#series)
* [parallel](#parallel)
* [whilst](#whilst)
* [doWhilst](#doWhilst)
* [until](#until)
* [doUntil](#doUntil)
* [forever](#forever)
* [waterfall](#waterfall)
* [compose](#compose)
* [applyEach](#applyEach)
* [queue](#queue)
* [cargo](#cargo)
* [auto](#auto)
* [iterator](#iterator)
* [apply](#apply)
* [nextTick](#nextTick)
* [times](#times)
* [timesSeries](#timesSeries)
### Utils
* [memoize](#memoize)
* [unmemoize](#unmemoize)
* [log](#log)
* [dir](#dir)
* [noConflict](#noConflict)
## Collections
<a name="forEach" />
<a name="each" />
### each(arr, iterator, callback)
Applies an iterator function to each item in an array, in parallel.
The iterator is called with an item from the list and a callback for when it
has finished. If the iterator passes an error to this callback, the main
callback for the each function is immediately called with the error.
Note, that since this function applies the iterator to each item in parallel
there is no guarantee that the iterator functions will complete in order.
__Arguments__
* arr - An array to iterate over.
* iterator(item, callback) - A function to apply to each item in the array.
The iterator is passed a callback(err) which must be called once it has
completed. If no error has occured, the callback should be run without
arguments or with an explicit null argument.
* callback(err) - A callback which is called after all the iterator functions
have finished, or an error has occurred.
__Example__
```js
// assuming openFiles is an array of file names and saveFile is a function
// to save the modified contents of that file:
async.each(openFiles, saveFile, function(err){
// if any of the saves produced an error, err would equal that error
});
```
---------------------------------------
<a name="forEachSeries" />
<a name="eachSeries" />
### eachSeries(arr, iterator, callback)
The same as each only the iterator is applied to each item in the array in
series. The next iterator is only called once the current one has completed
processing. This means the iterator functions will complete in order.
---------------------------------------
<a name="forEachLimit" />
<a name="eachLimit" />
### eachLimit(arr, limit, iterator, callback)
The same as each only no more than "limit" iterators will be simultaneously
running at any time.
Note that the items are not processed in batches, so there is no guarantee that
the first "limit" iterator functions will complete before any others are
started.
__Arguments__
* arr - An array to iterate over.
* limit - The maximum number of iterators to run at any time.
* iterator(item, callback) - A function to apply to each item in the array.
The iterator is passed a callback(err) which must be called once it has
completed. If no error has occured, the callback should be run without
arguments or with an explicit null argument.
* callback(err) - A callback which is called after all the iterator functions
have finished, or an error has occurred.
__Example__
```js
// Assume documents is an array of JSON objects and requestApi is a
// function that interacts with a rate-limited REST api.
async.eachLimit(documents, 20, requestApi, function(err){
// if any of the saves produced an error, err would equal that error
});
```
---------------------------------------
<a name="map" />
### map(arr, iterator, callback)
Produces a new array of values by mapping each value in the given array through
the iterator function. The iterator is called with an item from the array and a
callback for when it has finished processing. The callback takes 2 arguments,
an error and the transformed item from the array. If the iterator passes an
error to this callback, the main callback for the map function is immediately
called with the error.
Note, that since this function applies the iterator to each item in parallel
there is no guarantee that the iterator functions will complete in order, however
the results array will be in the same order as the original array.
__Arguments__
* arr - An array to iterate over.
* iterator(item, callback) - A function to apply to each item in the array.
The iterator is passed a callback(err, transformed) which must be called once
it has completed with an error (which can be null) and a transformed item.
* callback(err, results) - A callback which is called after all the iterator
functions have finished, or an error has occurred. Results is an array of the
transformed items from the original array.
__Example__
```js
async.map(['file1','file2','file3'], fs.stat, functi
没有合适的资源?快使用搜索试试~ 我知道了~
node-v0.10.21.tar.gz
0 下载量 94 浏览量
2024-05-01
22:21:37
上传
评论
收藏 13.01MB GZ 举报
温馨提示
Node.js,简称Node,是一个开源且跨平台的JavaScript运行时环境,它允许在浏览器外运行JavaScript代码。Node.js于2009年由Ryan Dahl创立,旨在创建高性能的Web服务器和网络应用程序。它基于Google Chrome的V8 JavaScript引擎,可以在Windows、Linux、Unix、Mac OS X等操作系统上运行。 Node.js的特点之一是事件驱动和非阻塞I/O模型,这使得它非常适合处理大量并发连接,从而在构建实时应用程序如在线游戏、聊天应用以及实时通讯服务时表现卓越。此外,Node.js使用了模块化的架构,通过npm(Node package manager,Node包管理器),社区成员可以共享和复用代码,极大地促进了Node.js生态系统的发展和扩张。 Node.js不仅用于服务器端开发。随着技术的发展,它也被用于构建工具链、开发桌面应用程序、物联网设备等。Node.js能够处理文件系统、操作数据库、处理网络请求等,因此,开发者可以用JavaScript编写全栈应用程序,这一点大大提高了开发效率和便捷性。 在实践中,许多大型企业和组织已经采用Node.js作为其Web应用程序的开发平台,如Netflix、PayPal和Walmart等。它们利用Node.js提高了应用性能,简化了开发流程,并且能更快地响应市场需求。
资源推荐
资源详情
资源评论
收起资源包目录
node-v0.10.21.tar.gz (2000个子文件)
ares_platform.c 481KB
s3_srvr.c 90KB
ec_curve.c 88KB
test.c 85KB
s3_clnt.c 83KB
ssl_lib.c 81KB
s3_lib.c 81KB
s_server.c 78KB
ca.c 73KB
t1_lib.c 71KB
apps.c 69KB
speed.c 68KB
kssl.c 68KB
ecp_nistp256.c 63KB
ssltest.c 63KB
ssltest.c 63KB
deflate.c 63KB
ecp_nistp521.c 62KB
http_parser.c 60KB
aes_core.c 59KB
s_client.c 58KB
tty.c 56KB
ares_init.c 53KB
x509_vfy.c 52KB
ecp_nistp224.c 52KB
d1_pkt.c 51KB
ssl_ciph.c 51KB
gcm128.c 50KB
ectest.c 49KB
ectest.c 49KB
unzip.c 48KB
fs.c 48KB
inflate.c 48KB
hw_zencod.c 47KB
pipe.c 47KB
bss_dgram.c 46KB
test-fs.c 45KB
str_lib.c 44KB
d1_srvr.c 44KB
e_capi.c 44KB
req.c 44KB
d1_clnt.c 43KB
d1_both.c 43KB
trees.c 43KB
s3_pkt.c 42KB
tcp.c 41KB
ares_process.c 40KB
bntest.c 39KB
bntest.c 39KB
ssl_err.c 39KB
e_chil.c 37KB
zip.c 37KB
t1_enc.c 36KB
v3_addr.c 36KB
stream.c 36KB
aes_x86core.c 36KB
tunala.c 35KB
cms.c 35KB
ec_asn1.c 34KB
e_aes.c 34KB
ocsp.c 34KB
eng_cryptodev.c 34KB
x509.c 33KB
ssl_sess.c 33KB
ecp_smpl.c 32KB
bn_nist.c 32KB
e_padlock.c 32KB
s2_srvr.c 32KB
process.c 32KB
easy-tls.c 31KB
tasn_dec.c 31KB
gzio.c 31KB
e_cswift.c 31KB
e_sureware.c 30KB
e_ubsec.c 30KB
s2_clnt.c 30KB
pk7_doit.c 30KB
err.c 29KB
ts.c 29KB
bn_gf2m.c 29KB
mttest.c 29KB
bn_exp.c 29KB
destest.c 29KB
destest.c 29KB
ts_rsp_sign.c 29KB
hw_ibmca.c 28KB
e_aep.c 28KB
pkcs12.c 28KB
s3_cbc.c 28KB
camellia.c 27KB
util.c 27KB
rand_win.c 26KB
cryptlib.c 26KB
s3_enc.c 26KB
wp_block.c 25KB
e_4758cca.c 25KB
ec_lib.c 25KB
bn_mul.c 25KB
rsa_eay.c 25KB
asn_mime.c 24KB
共 2000 条
- 1
- 2
- 3
- 4
- 5
- 6
- 20
资源评论
程序员Chino的日记
- 粉丝: 3718
- 资源: 5万+
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 基于web的中小型企业医药管理系统.doc
- PM产品管理流程总结整理
- 基于web的大学生社团平台的开发与实现论文.doc
- 基于SSM框架的建筑市场监管与诚信信息发布平台.doc
- Delphi 12 控件之Dism++10.1.1002.1B.rar
- 自动化水洗标机sw18可编辑全套技术资料100%好用.zip
- photocc2020处理不了webp文件插件
- 跑步社区界面管理系统基于Struts2技术的设计与实现
- 基于struts和hibernate的手机销售系统的设计与实现论文.doc
- 山东大学编译原理期末复习-概念汇总
- 基于web的畅读小说管理系统设计论文.doc
- 基于Web的电影点评系统分析与设计-提高用户观影选择及影院管理效率的JSP开发
- 基于web的房屋出租管理系统的设计与实现.doc
- 基于web的老年公寓管理平台的设计与实现.doc
- 基于web的农产品销售管理系统
- 基于web的人才招聘网站论文 .doc
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功