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
0 answers
How to start a Chrome Extension (Livereload) with AppleScript?
I use the Livereload Extension in Chrome. To make the extension work, I have to open Chrome and then click on the icon to make the extension refresh the tab when needed.
How can I launch the extension with AppleScript?
I came so far:
on run…

Phlow
- 688
- 4
- 14
0
votes
1 answer
Why CSS grunt tasks finishing in 30ms but page taking 7 seconds to reload?
I'm using grunt to watch my html and css files and reload the browser when they change. If I make a change to my html, the page reloads almost instantly, but if I make a change to some CSS, I get the following print out in my command prompt.…

aadu
- 3,196
- 9
- 39
- 62
0
votes
1 answer
How to make grunt sass preprocessor and livereload fast?
I'm creating a project with project with SCSS. I have scaffolded a project with Yeoman and this far everything has worked fine. Now the SCSS preprocessor and livereload is extremely slow.
This is my Gruntfile.js watch task:
watch: {
sass: {
…

Jaakko Karhu
- 2,298
- 4
- 28
- 41
0
votes
1 answer
Do I need to add a forwarded port for livereload when using a vagrant box?
I'm trying to use the livereload browser extension with a vagrant box provisioned using puphpet.
I think port 35729 is blocked as I can't telnet to that port from the host OS (OSX). Guest OS is Ubuntu 14.04.
Would adding an IPTables rule suffice or…

codecowboy
- 9,835
- 18
- 79
- 134
0
votes
1 answer
Git Deploy to Heroku is leading to Application Error
I'm attempting to deploy to Heroku. The build finishes, but I get the dreaded Application Error page when trying to access the deployed Heroku URL of my application. For the record, the application works just fine locally.
heroku logs…

Seeeyonnn
- 315
- 2
- 10
- 19
0
votes
2 answers
Browsersync not syncing scroll
I am new to gulp and I'm trying to get browser-sync working. It seems to work fine except that the syncronised scroll is not working. Can anyone see what might be wrong with my setup.
var gulp = require('gulp'),
jade = require('gulp-jade'),
…

byronyasgur
- 4,627
- 13
- 52
- 96
0
votes
1 answer
Using gulp livereload with XAMPP
I been using gulp for front-end development lately and I find it very helpful.
I use XAMPP in windows for making PHP website some of which sometime include database operations.
Now, I have used gulp-livereload and gulp-connect for starting a server…

Manas N
- 23
- 6
0
votes
1 answer
Why is Guard Livereload not starting the server?
I have setup Guard and Guar-Livereload on my new Rails project similarly on how I had on a previous one: Gemfile:
group :development do
gem 'spork-rails', '4.0.0'
gem 'guard-spork', '1.5.0'
gem 'childprocess'
gem "rspec-rails"
…

WagnerMatosUK
- 4,309
- 7
- 56
- 95
0
votes
2 answers
error using jekyll with guard
I am trying to use jekyll with livereload like explained here:
The project is using Bundler with the github-pages gem (jekyll v.2.4), so guard-jekylland guard-livereload are added to the Gemfile and then I make bundle install and guard init. this…

François Romain
- 13,617
- 17
- 89
- 123
0
votes
1 answer
Gruntjs Livereload not working
I can't seem to get the livereload option to work on the grunt-contrib-watch task.
I have the local host livereload.js file attached at the bottom of my html file.
When i go to http://localhost:35729/ all i get is the…

whatsnewsaes
- 405
- 2
- 5
- 13
0
votes
2 answers
Livereload with Ember-CLI; only reload changed assets
I'm used to building a asset compilation system with Grunt or Gulp. Using Gulp's livereload and the Chrome livereload plugin, I have a pretty sweet system where it watches for changes of certain file types and reloads only the file that were…

typeoneerror
- 55,990
- 32
- 132
- 223
0
votes
2 answers
Can/Should gulp livereload be installed globablly
I am new to Node and I don't fully understand yet what installing locally means exactly. I know I need to install gulp both globally as well as locally but in my case I have a number of projects in separate folders under a development folder and I…

byronyasgur
- 4,627
- 13
- 52
- 96
0
votes
1 answer
How to open experiments tab in chrome browser?
I have watched Paul Irish's talk on developer workflow. There he opens a tab in chrome developer tools called experiments. Can somebody please tell me how how to get to it and wether I should download some sort of extention first?
The particular…

Vlas Bashynskyi
- 1,886
- 2
- 16
- 25
0
votes
1 answer
Gulp livereload issue (save twice)
I've recently switched from grunt to gulp, and so far have successfully configured gulp to do what I want. The only problem I'm having is with livereload, I'm finding that I have to save twice in order to see the compiled sass in the browser. Sass…

Boyswan
- 224
- 1
- 4
- 12
0
votes
1 answer
Change in LESS should trigger a full page reload
I have a grunt-watch task that triggers livereload, when it detects changes to files. However it does not trigger a page reload when I change .less files. On that occasion it only makes the page reload the app.less which updates the styling. This…

Daniel
- 597
- 11
- 19