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-express notify livereload
I am using gulp-express to run an express server from gulpfile.js. I create the express server in ./src/server/index.js
In the server settings I specify app.use(require('connect-livereload')()); to enable livereload in the browser
In gulpfile, I…

Mikou
- 579
- 1
- 8
- 17
0
votes
1 answer
Sublime Text 3 Settings: Save Twice
I am not sure if this is the correct place to ask this or not, if it's not please let me know where would be the right place.
There is a well known issue with LiveReload for Sublime Text in which the changes are not shown unless you save twice.
I'm…
user5075489
0
votes
1 answer
Listen to Livereload.js event to reload ajax contents "not the whole page"
here is my configuration:
I have a remote site, say something.com where "some" page contents are dynamically loaded from localhost, with an ajax call to a node local server.
Remote site listens to grunt-watch server too, and reloads the whole page…

Daniele
- 829
- 1
- 13
- 23
0
votes
1 answer
Run two instances of livereload at gulp
I have 2 tabs opened at development process (one with application, second one with jasmine test suite).
So, I have 2 browserify bundles (which are seems like this code), so, I need two gulp-livereload instances worked. This is how I do that:
var…

Alex Antonov
- 14,134
- 7
- 65
- 142
0
votes
1 answer
For about a month now, Livereload not working
I always use Livereload with grunt for webapps, but suddenly for about a month ago it stopped working. I haven't done anything different then what I used to. Is it a bug with Livereload or am I missing something here?

Jorgeuos
- 541
- 6
- 28
0
votes
2 answers
livereload not compiling less file
Im using livereload and using Espresso as my editor, ive linked livereload to my html file, however when i edit my less file it wont load of the functions or styles, but the livereload itself works. When i also try to edit anything on a less file it…

Jethwa
- 11
- 4
0
votes
2 answers
How can i fix these reloading issus from the apache module?
I'm currently working on an add-on for the ckeditor.
And until, I recently needed to switch from working directly with the html-files ('file:///C:/Users/.../index.html') to working with an local Apache Webserver (localhost or 127.0.0.1/index.html),…

Haushund
- 3
- 2
0
votes
1 answer
livereload failing to compile
I'm new dev environments and to get to grips with sass. I've installed compass and a few other gems, Im trying to use live reload to help update the browser, but it won't play nice;
LoadError on line ["55"] of…

Meeps
- 387
- 2
- 3
- 15
0
votes
1 answer
Only livereload HTML pages that have changed
I've setup as outlined below. Everything is working and when I edit an HTML page, gulp triggers the livereload in Chrome.
However, I noticed it's reloading every single html page. How can I set it so it only reloads the page that has changed?
//…

jx3
- 921
- 1
- 7
- 22
0
votes
1 answer
Browser not reloading with Grunt Livereload
I trying to add livereload of broser when changing my files, but browser not reloading, and I cant get why, I do all like described here, and browser opens when I tun grunt, then when change index.html, in console getting
Waiting...
>> File…

nowiko
- 2,507
- 6
- 38
- 82
0
votes
1 answer
Livereload UI "Add folder" doesn't work
After attaching big size folder (Desktop folder) as a project folder "Add folder" stopped working. Reinstalling didn't help. How can I solve this or what is the name of the file I should put project directiories in so there will be no need to use UI…

Uncle Ben
- 1
- 3
0
votes
1 answer
Fonts not being served correctly using python-livereload
I am using Sphinx to build a documentation project. I have created this script to watch the directory and trigger a Sphinx build when changes occur:
import os
import sys
from livereload import Server, shell
wd = os.path.dirname(sys.argv[0])
server…

Evan Mulawski
- 54,662
- 15
- 117
- 144
0
votes
1 answer
Grunt LiveReload not showing
i have a noob question about livereload with Grunt. I have the watch task configured with livereload: true
I added the tag at the bottom of the page and when i point the browser to localhost:port_number_i_can't_remember it shows a page with the .js…

talvasconcelos
- 75
- 1
- 1
- 12
0
votes
1 answer
Live Reload not Working with express, connect-livereload, tiny-lr, gulp-embedlr and gulp-livereload
I followed this tutorial to set up a Gruntfile for a little project I'm working on. everything seems to be working great, except for the live reload part. I don't get any errors, but no live reloading either. Here is the code:
var browserify =…

Dan Forbes
- 2,734
- 3
- 30
- 60
0
votes
0 answers
Grunt js not opening in browser on server command
When I do a 'grunt serve' in my terminal it just sits and watches. it never opens my browser. I'm not sure what I am missing.
Take a look at this and tell me what I am doing wrong:
module.exports = function(grunt) {
// Project configuration.
…

John
- 107
- 2
- 12