parallel-js:并行或一个接一个地运行任务

时间:2024-08-02 07:47:25
【文件属性】:

文件名称:parallel-js:并行或一个接一个地运行任务

文件大小:5KB

文件格式:ZIP

更新时间:2024-08-02 07:47:25

CoffeeScript

并行js 并行或一个接一个地运行函数和进程。 $ npm install parallel-js 用法 示例:使用 ImageMagick 和子进程并行调整图像大小。 var Processor = require ( 'parallel-js' ) . Processor ; var task = function ( next , command , args ) { var child = require ( 'child_process' ) . spawn ( command , args ) ; child . on ( 'close' , function ( code ) { console . log ( new Date ( ) , command , args , 'finished with code' , code ) ; //non-zero


【文件预览】:
parallel-js-master
----src()
--------worker.coffee(209B)
--------processor.coffee(839B)
--------pool.coffee(259B)
----.npmignore(12B)
----.travis.yml(164B)
----LICENSE(1KB)
----test()
--------test.js(623B)
----README.md(2KB)
----.gitignore(562B)
----index.js(433B)
----package.json(804B)

网友评论