所以我正在使用gulp-exec(https://www.npmjs.com/package/gulp-exec),在阅读了一些文档后,它提到如果我只想运行一个命令,我不应该使用该插件并使用代码i'我试过用下面的。
var exec = require('child_process').exec;
gulp.task('server', function (cb) {
exec('start server', function (err, stdout, stderr) {
.pipe(stdin(['node lib/app.js', 'mongod --dbpath ./data']))
console.log(stdout);
console.log(stderr);
cb(err);
});
})
我正在努力获得启动我的Node.js服务器和MongoDB。这就是我想要完成的。在我的终端窗口,它抱怨我的
.pipe
然而,我是gulp的新手,我认为这是你通过命令/任务的方式。感谢任何帮助,谢谢。
答案 0 :(得分:40)
gulp.task('server', function (cb) {
exec('node lib/app.js', function (err, stdout, stderr) {
console.log(stdout);
console.log(stderr);
cb(err);
});
exec('mongod --dbpath ./data', function (err, stdout, stderr) {
console.log(stdout);
console.log(stderr);
cb(err);
});
})
供将来参考,如果有其他人遇到此问题。
上面的代码解决了我的问题。所以基本上,我发现上面是它自己的功能,因此,不需要:
.pipe
我认为这段代码:
exec('start server', function (err, stdout, stderr) {
是我正在运行的任务的名称,但它实际上是我将运行的命令。因此,我将其更改为指向运行我的服务器的app.js,并指向我的MongoDB。
修改的
如下面提到的@ N1mr0d没有服务器输出,运行服务器的更好方法是使用nodemon。您可以像运行nodemon server.js
一样运行node server.js
。
以下代码片段是我在gulp任务中使用的命令,现在使用nodemon运行我的服务器:
// start our server and listen for changes
gulp.task('server', function() {
// configure nodemon
nodemon({
// the script to run the app
script: 'server.js',
// this listens to changes in any of these files/routes and restarts the application
watch: ["server.js", "app.js", "routes/", 'public/*', 'public/*/**'],
ext: 'js'
// Below i'm using es6 arrow functions but you can remove the arrow and have it a normal .on('restart', function() { // then place your stuff in here }
}).on('restart', () => {
gulp.src('server.js')
// I've added notify, which displays a message on restart. Was more for me to test so you can remove this
.pipe(notify('Running the start tasks and stuff'));
});
});
安装Nodemon的链接:https://www.npmjs.com/package/gulp-nodemon
答案 1 :(得分:8)
此解决方案显示stdout / stderr,并且不使用第三方库:
var spawn = require('child_process').spawn;
gulp.task('serve', function() {
spawn('node', ['lib/app.js'], { stdio: 'inherit' });
});
答案 2 :(得分:1)
您也可以像这样创建gulp node server task runner:
gulp.task('server', (cb) => {
exec('node server.js', err => err);
});