gpt4 book ai didi

javascript - 停止通过 Gulp 运行 nodemon

转载 作者:行者123 更新时间:2023-11-30 00:08:17 25 4
gpt4 key购买 nike

我的想法是,我会使用 nodemon 启动一个具有特定端口的应用程序,然后运行我的测试,最后停止正在运行的应用程序,以便我可以随时再次运行它。

gulp.task('test', function(cb) {
nodemon({
script: 'server.js',
env: {
'NODE_ENV': 'test'
}
});

// Run tests....


// Stop the application and exit running Gulp -> How to do this?
});

有没有办法停止或强制 ctrl+c 运行 gulp?

最佳答案

我得到了这些

require('shelljs/global'); // https://github.com/shelljs/shelljs

gulp.task('test', ['nodemon-test', 'mocha-test']);

gulp.task('nodemon-test', function(cb) {
nodemon({
script: 'server.js',
env: {
'NODE_ENV': 'test'
}
})
.on('start', function() {
cb();
})
});

gulp.task('mocha-test', ['nodemon-test'], function() {
exit(1);
});

关于javascript - 停止通过 Gulp 运行 nodemon,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37582136/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com