所以,我有下面的grunt文件。我想要添加一个任务来启动我的节点应用程序并监视目录中的更改并重新启动。我一直在使用supervisor,node-dev(这很棒)但我想运行一个命令并启动我的整个应用程序。必须有一个简单的方法来做到这一点,但我只是错过了它。它也是用coffeescript编写的(不确定是否会改变)...
module.exports = function(grunt) {
grunt.initConfig({
/*exec: {
startApi: {
command: "npm run-script start-api"
}
},*/
//static server
server: {
port: 3333,
base: './public',
keepalive: true
},
// Coffee to JS compilation
coffee: {
compile: {
files: {
'./public/js/*.js': './src/client/app/**/*.coffee'
},
options: {
//basePath: 'app/scripts'
}
}
},
mochaTest: {
all: ['test/**/*.*']
},
watch: {
coffee: {
files: './src/client/app/**/*.coffee',
tasks: 'coffee'
},
mochaTest: {
files: 'test/**/*.*',
tasks: 'mochaTest'
}
}
});
grunt.loadNpmTasks('grunt-contrib-coffee');
grunt.loadNpmTasks('grunt-mocha-test');
//grunt.loadNpmTasks('grunt-exec');
grunt.registerTask( 'default', 'server coffee mochaTest watch' );
};
正如您在评论中看到的,我尝试了grunt-exec,但是node命令会停止执行其他任务。
答案 0 :(得分:8)
您可以设置grunt以在启动节点应用程序时运行默认任务和监视任务:
app.js中的
var cp = require('child_process');
var grunt = cp.spawn('grunt', ['--force', 'default', 'watch'])
grunt.stdout.on('data', function(data) {
// relay output to console
console.log("%s", data)
});
然后正常运行node app
!