node.js - serve - La recarga en vivo falla: error al cargar el recurso: net:: ERR_CONNECTION_REFUSED
node js tutorial pdf español (1)
He estado usando Browsersync durante bastante tiempo después de que tuve problemas con Live-Reload, y aquí está mi configuración para Browsersync ...
var browsersync = require(''browser-sync''));
//BrowserSync Function
gulp.task(''browser-sync'', function() {
browsersync({
// Change the director name for static site
server: {
baseDir: "./builds/development"
}
});
});
// Browser Sync reload function
gulp.task(''browsersync-reload'', function () {
browsersync.reload();
});
// Server and Watch Function
gulp.task(''server'', [''browser-sync''], function() {
gulp.watch("components/sass/**/*.scss", [''sass'']);
gulp.watch("html_pages/**/*.html", [''html'']);
gulp.watch("builds/development/*.html", [''browsersync-reload'']);
gulp.watch("components/scripts/**/*.js", [''js'']);
});
Espero eso ayude.
Estoy comenzando a recargar en vivo a través de Gulp:
var $$ = require(''gulp-load-plugins'')();
gulp.watch(''*'', function (file) {
$$.livereload().changed(file.path);
});
gulp.task(''connect'', function(){
var connect = require(''connect'');
return connect()
.use(require(''connect-livereload'')())
.use(connect.static(__dirname))
.listen(8000);
});
Había estado funcionando hasta que recibí recientemente este error críptico en la consola del navegador y volví a cargar el trabajo detenido:
Failed to load resource: net::ERR_CONNECTION_REFUSED
http://localhost:35729/livereload.js?snipver=1
¿Alguna idea de lo que sucede aquí?
Estoy detrás de proxy pero localhost está excluido.