node.js - 我想通过supervisor + livereload 让后端模板修改页面自动刷新,应该怎么搞?
PHP中文网
PHP中文网 2017-04-17 15:32:14
0
0
581

//我想通过supervisor + livereload  让后端模板修改页面自动刷新,应该怎么搞?
gulp.task("watch", function() {
    livereload({ start: true });
    exec("supervisor -e html,js -w server ./server/bin/www");
    gulp.watch("server/views/**/*.html", function() {
        exec("rs", function() {
            livereload();
        });
    });

    gulp.watch("fe/less/**/*.less", function() {
        gulp.start("less");
    });
})

//现在浏览器无法自动刷新
PHP中文网
PHP中文网

认证高级PHP讲师

全部回覆(0)
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板