gpt4 book ai didi

node.js - 使用 gulp 任务运行 Node 服务器

转载 作者:搜寻专家 更新时间:2023-10-31 23:30:39 24 4
gpt4 key购买 nike

我是 gulp 的新手。

我需要使用 gulp 运行 Node 服务器,但不使用它的任何插件。

这可能吗?

如果不是,那么 gulp 系统中最好的插件是什么。

最佳答案

你应该试试 gulp-nodemon 插件。它是使用 node 进行开发的有用插件。

// Gulpfile.js
var gulp = require('gulp')
, nodemon = require('gulp-nodemon')
, jshint = require('gulp-jshint')

gulp.task('lint', function () {
gulp.src('./**/*.js')
.pipe(jshint())
})

gulp.task('develop', function () {
nodemon({ script: 'server.js'
, ext: 'html js'
, ignore: ['ignored.js']
, tasks: ['lint'] })
.on('restart', function () {
console.log('restarted!')
})
})

更多详情可以访问here .

还有

如果你不想使用任何插件,你可以在没有它的情况下启动 Node ,如下所示:

var gulp = require('gulp')
, exec = require('child_process').exec

gulp.task('nodestart', function (cb) {
exec('node bin/www.js', function (err, stdout, stderr) {
console.log(stdout);
console.log(stderr);
cb(err);
});
})

关于node.js - 使用 gulp 任务运行 Node 服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33840823/

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