我正在使用gulp start任务来运行带有nodemon的indx.coffee文件,如下所示:
1 var gulp = require('gulp');
2 var execFile = require('child_process').execFile;
3
4 gulp.task("start", function(cb) {
5 execFile('nodemon', ['src/index.coffee'], function(err, stdo, stde) {
6 if(err)
7 return cb(err);
8 else
9 console.log('Server started');
10 });
11 });

但是从命令行运行gulp start
之后它不会将Server started
写入控制台。
有人可以帮忙吗?