文件名称:yaal:另一个异步库。 串行或并行,多项任务或一项任务多次。 错误处理正确
文件大小:36KB
文件格式:ZIP
更新时间:2024-07-04 19:01:29
JavaScript
亚尔 另一个异步库。 使用任意数量的参数并行或串行执行任意数量的任务。 接收所有结果,然后轻松操作它们以获取您需要的数据。 一个异步函数来统治它们(或者至少这是目标)。 安装: npm install yaal 然后像这样使用: // You only need this one function. var yaal = require ( "yaal" ) ; // Stat a group of files, one at the time yaal ( fs . stat , [ "file1.txt" , "file2.txt" , "missing" ] , 1 , function ( err , res ) { if ( err ) { console . log ( "One of the raised errors:
【文件预览】:
yaal-master
----.gitignore(5B)
----README.md(15KB)
----ver(4KB)
----LICENSE(11KB)
----package.json(603B)
----sandbox()
--------yaal.tester.js(2KB)
--------.gitkeep(0B)
--------collectors.tester.js(2KB)
--------taskRunner.tester.js(868B)
----spec()
--------switches()
--------.gitkeep(0B)
--------hashCollector.spec.js(7KB)
--------arrayCollector.spec.js(7KB)
--------helpers.js(1KB)
--------yaal.spec.js(5KB)
--------taskRunner.spec.js(5KB)
----lib()
--------tasks()
--------yaal.js(3KB)
--------vars.js(3KB)
--------.gitkeep(0B)
--------tools.js(3KB)
--------types()
--------collectors()
----testall.sh(52B)