我尝试使用gulp-live-server
自动重启服务器,并在代码更改时刷新页面。
以下是我的基本设置:
在我的server.js上:
app.use(require('connect-livereload')());
我的gulp文件:
gulp.task('server', function () {
server = gls('app.js', options);
server.start();
// Watch for file changes
gulp.watch(['app.js', 'app/**/*.js', 'config/**/*.js', 'components/**/*.jsx'], function() {
server.start.bind(server)();
server.notify.bind(server)();
});
});
我的服务器成功重启,但浏览器不会刷新。
非常感谢帮助。