16 Star 36 Fork 7

star7th / htq

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
htq.js 406 Bytes
一键复制 编辑 原始数据 按行查看 历史
star7th 提交于 2016-09-03 10:54 . add
/**
* @author xing7th@gmail.com
* @website http://www.showdoc.cc/htq
*/
var cp = require('child_process');
run_js("queue.js");
run_js("api.js");
function run_js(js_name){
child = cp.fork('./'+js_name);
//监听子进程发送过来的message
child.on( 'message', ( m) => {
console.log(message);
});
//子进程关闭
child.on('close',function(code,signal){
run_js(js_name);
});
}
JavaScript
1
https://gitee.com/star7th/htq.git
git@gitee.com:star7th/htq.git
star7th
htq
htq
master

搜索帮助