LiveReload applies CSS/JS changes to Safari or Chrome w/o reloading the page (and autoreloads the page when HTML changes)
Questions tagged [livereload]
564 questions
0
votes
1 answer
Gulp livereload doesn't restart server
Can't set my gulp+livereload server to restart and update page on change of JS files. How could i implement it?
Here's my gulpfile.js:
var gulp = require('gulp'),
livereload = require('gulp-livereload'),
watch =…

walkthroughthecode
- 419
- 4
- 18
0
votes
0 answers
How to connect to Dropbox Api from yeoman generated app?
I use yeoman with livereload. And when I try connect to Dropbox Api I get error message in console.
The page at…

Nvmbr15
- 1
0
votes
1 answer
Reload JS/CSS files on change without page reloading
I'm using Livereload for Grunt.js to reload web-page after any of watching files are being changed.
Is it possible to delete changed js or css file from the cache and reload only them, NOT reloading the whole html-page?
This question seems to be…

nnn
- 328
- 3
- 9
0
votes
1 answer
nitrous.io browsersync.io gulp
I've been working with a nitrous.io virtural box, building a gulp task which incorporates browsersync.io. I've been able to install and instantiate browser-sync via gulp, but Im having trouble getting a valid proxy address.
This is a truncated…

orionrush
- 566
- 6
- 30
0
votes
0 answers
Slow livereload with grunt
Apologies in advance I'm very new to this, I previously was using Durandal with NPM and had liverealod working and it was lightning fast, now I'm using grunt with angular and my livereload has gotten much slower, sometimes 4-5 seconds. Didn't know…

user2002128
- 3
- 1
0
votes
1 answer
cordova - ripple - grunt liveroload javascript app don't refresh
I use cordova and ripple emulate for debug, all work fine but i i try to change the index.js
var app = {
// Application Constructor
initialize: function() {
this.bindEvents();
},
bindEvents: function() {
…

lbottoni
- 962
- 2
- 14
- 26
0
votes
1 answer
What is wrong with my syntax? Livereload + Xampp + Chrome args = continued failure
Gahhh! How do I get Livereload to stop giving this origin error? I get that normally security keeps you from calling files on your own machine, but I am trying to correct for that. How?
Xampp servers are running.
Then this: open -a 'Google…

Maggie
- 1,975
- 3
- 15
- 17
0
votes
1 answer
Grunt livereload breaks when adding directive to AngularJS app (generated with Yeoman)
I have an AngularJS app, generated with Yeoman, with all addons enabled (such as Bootstrap, SASS...).
Livereload was working fine, until i added a directive. I put it in the directory /app/scipts/directives/myDirectives.js.
This is the content of…

ArneHugo
- 6,051
- 1
- 26
- 47
0
votes
1 answer
Howto get livereload working?
I'm using gulp-connect 2.0.6 to try and get livereload working,
WebSocket connection to 'ws://localhost:35729/livereload' failed: Error during WebSocket handshake: Status line contains embedded null
The line that throws that error…

broinjc
- 2,619
- 4
- 28
- 44
0
votes
1 answer
GulpJS - live reload with Laravel
I'm trying to get this working and I have spent a day now with not much success... I'm new to both Laravel and GulpJS, which makes it even better I guess... :)
What I'm trying to achieve is a (preferably cross-platform) solution for reloading the…

Barnabas Kecskes
- 1,861
- 17
- 24
0
votes
1 answer
Error using LiveReload on virtual machine with grunt
I am working with a virtualbox set up with vagrant/puphpet (ubuntu 12.04).
I set up grunt and contrib-watch successfully. I installed the chrome extension ... everything as specified here :…

JohnWolf
- 1,147
- 14
- 28
0
votes
1 answer
Gulp livereload doesn't update browser
I've now tried all three methods that I can find to use livereload with Gulp and I seem to still be running into the same problem.
I start up my gulp file and it runs just fine, so I go into my partials and make a small change (change a h1 tag from…

Arrows
- 15
- 6
0
votes
1 answer
How do you call tasks in gulp with live reload - after file changes have occured
I defined in a gulp file, the following task:
gulp.task('watch:livereload', function(){
livereload.listen();
gulp.watch('app/**').on('change', livereload.changed);
});
Which only recently did I realize is great only for static things like html.…

user3379926
- 3,855
- 6
- 24
- 42
0
votes
4 answers
Gulp, livereload, jade
Need help.
I use gulp-conect and it livereload method. But if I build a few template in time, get a lot of page refresh. Is any solution, I want to build few templates with single page refresh?

Serhiy
- 736
- 6
- 10
0
votes
1 answer
Beginner at using Grunt need some advice for my Gruntfile.js
I'm new to setting up my own grunt, and this is what I have come up with. I was just wondering if someone could look it over and give me some hints/advice.
module.exports = function (grunt) {
grunt.initConfig({
pkg:…

jordond
- 367
- 4
- 15