3

所以,我有下面的 grunt 文件。我想添加一个任务来启动我的节点应用程序并监视目录中的更改并重新启动。我一直在使用supervisor,node-dev(很棒),但我想运行一个命令并启动我的整个应用程序。必须有一个简单的方法来做到这一点,但我只是想念它。它也是用咖啡脚本编写的(不确定这是否会改变事情)......

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 命令停止了其他任务的执行。

4

1 回答 1

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正常运行!

信用

于 2013-01-09T19:14:54.617 回答