使用gulp-nodemon&时,无法使用Ctrl + C停止Gulp gulp.watch在一起

时间:2015-10-05 16:22:59

标签: javascript gulp

当我在没有node任务的情况下运行gulp时,它工作正常并按预期处理客户端文件,如果我运行gulp node它按预期处理服务器文件。但是,如果我同时运行gulp它会按预期处理客户端和服务器文件,但是,按“Ctrl + C”(在Windows 10和Mac El Capitan上试过)它不会让我退出。我在这里做错了吗?

'use strict';
  var gulp = require('gulp');
    var connect = require('gulp-connect'); 
    var browserify = require('browserify'); 
    var source = require('vinyl-source-stream'); 
    var nodemon = require('gulp-nodemon');

    var config = {
        port: 9005,
        devBaseUrl: 'http://localhost',
        paths: {
            html: './src/*.html',
            dist: './dist',
            js: './src/**/*.js',
            images: './src/images/*',
            mainJs: './src/main.js',
            css: [
                'node_modules/bootstrap/dist/css/bootstrap.min.css',
                'node_modules/bootstrap/dist/css/bootstrap-theme.min.css'
            ]
        }
    };

gulp.task('connect', function () {
    connect.server({
        root: ['dist'],
        port: config.port,
        base: config.devBaseUrl,
        livereload: true
    });
});


gulp.task('html', function () {
    gulp.src(config.paths.html)
        .pipe(gulp.dest(config.paths.dist))
});

gulp.task('js', function () {
    browserify(config.paths.mainJs)
        .bundle()
        .on('error', console.error.bind(console))
        .pipe(source('bundle.js'))
        .pipe(gulp.dest(config.paths.dist + '/scripts'))
        .pipe(connect.reload())

});

gulp.task('node', function () {
    nodemon({
        script: 'server/index.js',
        ext: 'js',
        env: {
            PORT: 8000
        },
        ignore: ['node_modules/**','src/**','dist/**']
    })
    .on('restart', function () {
        console.log('Restarting node server...');
    })
});

gulp.task('watch', function () {
    gulp.watch(config.paths.js, ['js']);
});

gulp.task('default', ['html', 'js', 'connect', 'node', 'watch']);

4 个答案:

答案 0 :(得分:3)

在顶部你有

var monitorCtrlC = require('monitorctrlc');

并且在watch任务内部

monitorCtrlC();

似乎是this library

  

当Ctrl + C为时,此功能将阻止发送SIGINT信号   按下。相反,将调用指定的(或默认)回调。

答案 1 :(得分:2)

在此之前我遇到过类似的问题:

process.on('SIGINT', function() {
  setTimeout(function() {
    gutil.log(gutil.colors.red('Successfully closed ' + process.pid));
    process.exit(1);
  }, 500);
});

只需将此代码添加到您的gulp文件即可。它将观察ctrl + C并正确终止该过程。如果需要,您也可以在超时中放入一些其他代码。

答案 2 :(得分:0)

以防它帮助其他人,我删除了node_modules,并npm install为我解决了问题......

答案 3 :(得分:0)

SIGINT解决方案对我不起作用,可能是因为我也在使用gulp-nodemon,但这可行:

    var monitor = $.nodemon(...)
    // Make sure we can exit on Ctrl+C
    process.once('SIGINT', function() {
    monitor.once('exit', function() {
          console.log('Closing gulp');
          process.exit();
        });
    });
    monitor.once('quit', function() {
        console.log('Closing gulp');
        process.exit();
    });

here得到它。