nodejs grunt子进程回调函数示例

时间:2012-12-19 16:57:02

标签: node.js callback gruntjs child-process

您是否可以帮助以下使用grunt运行节点exec命令的示例?

正在执行echo命令,并且已创建hello-world.txt,但回调函数中的grunt.log.writeln命令未触发。

var exec = require('child_process').exec,
    child;

    child = exec('echo hello, world! > hello-world.txt', 
        function(error, stdout, stderr){
            grunt.log.writeln('stdout: ' + stdout);
            grunt.log.writeln('stderr: ' + stderr);
            if (error !== null) {
                grunt.log.writeln('exec error: ' + error);
          }
        }
    );

参考文献:

http://nodejs.org/api/child_process.html#child_process_child_process_spawn_command_args_options

Retrieving a value from a node child process

1 个答案:

答案 0 :(得分:10)

DOH!这是在FAQ中。

将Gruntjs用于异步任务时,必须手动指定任务何时完成。 https://github.com/gruntjs/grunt/wiki/Frequently-Asked-Questions
https://github.com/robdodson/async-grunt-tasks
https://github.com/rwldrn/dmv/blob/master/node_modules/grunt/docs/api_task.md

对于子孙后代,上面应该是这样的:

var exec = require('child_process').exec,
    child,
    done = grunt.task.current.async(); // Tells Grunt that an async task is complete

child = exec('echo hello, world! > hello-world.txt', 
    function(error, stdout, stderr){
        grunt.log.writeln('stdout: ' + stdout);
        grunt.log.writeln('stderr: ' + stderr);
        done(error); // Technique recommended on #grunt IRC channel. Tell Grunt asych function is finished. Pass error for logging; if operation completes successfully error will be null

      }
    }
);