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
11
votes
2 answers
Yeoman: LiveReload vs. Yeoman Watch
I'm trying out Yeoman Server for the first time and see that it offers a native watch tool as a fallback to LiveReload. Here's how the docs explain the fallback:
"[Yeoman Server] automatically fires up the yeoman watch process, so changes to any of…

cantera
- 24,479
- 25
- 95
- 138
10
votes
4 answers
How to use docker in the development phase of a devops life cycle?
I have a couple of questions related to the usage of Docker in a development phase.
I am going to propose three different scenarios of how I think Docker could be used in a development environment. Let's imagine that we are creating a REST API in…

Mr. Mars
- 762
- 1
- 9
- 39
10
votes
1 answer
angular configure hot reload / live reload for speed
I'm using Angular 5.
The hot reload takes about 8 secs which is reasonable (not great though) but is there any way to configure it so I can tweak it to make it faster?
Concerned it will get even slower as the app grows. Thanks.

danday74
- 52,471
- 49
- 232
- 283
10
votes
1 answer
Grunt: Fatal error: watch EPERM
You can view/clone the full code here: https://github.com/mlewisTW/grunt-tests
I'd like to watch the src directory (to minify, concat, less, etc), which puts everything into the build dir. I'd also like to watch the build dir in order to…

Michael Lewis
- 4,252
- 6
- 28
- 39
10
votes
2 answers
Why isn't grunt-contrib-watch livereload working?
I'm struggling to get Grunt's "live reload" ability (as implemented in grunt-contrib-watch) to work in my app. I finally bit the bullet, and tried making a minimal example. Hopefully someone can easily notice what's missing.
File Structure:
├──…

Zach Lysobey
- 14,959
- 20
- 95
- 149
10
votes
1 answer
Does Sublime Text support live editing of CSS/SASS files?
Does Sublime Text support live editing of files?
I'm looking for a better workflow. I really like Sublime Text, but recently I've been spoiled by the "Live Editing" capabilites of tools like Codepen.io and (recently tested) Adobe Brackets. When I go…

GN.
- 8,672
- 10
- 61
- 126
10
votes
5 answers
grunt watch livereload Fatal error: Port 35279 is already in use by another process
I'm trying to use livereload with watch. I keep getting the message "Fatal error: Port 35279 is already in use by another process" . I've changed the port for livereload but then nothing reloads.
module.exports = function(grunt)…

user2808895
- 438
- 1
- 6
- 14
9
votes
1 answer
How to run livereload with gulp within a docker container?
I created a docker container to run tasks with gulp.
All tasks are running, the problem is I can't enable livrereload in Chrome although I exposed the 35729 port in my container.
Here is the Dockerfile :
FROM ubuntu:latest
MAINTAINER…

jiboulex
- 2,963
- 2
- 18
- 28
9
votes
1 answer
Live reload fails - Failed to load resource: net::ERR_CONNECTION_REFUSED
I am starting live reload via Gulp:
var $$ = require('gulp-load-plugins')();
gulp.watch('*', function (file) {
$$.livereload().changed(file.path);
});
gulp.task('connect', function(){
var connect = require('connect');
return connect()
…

Dmitri Zaitsev
- 13,548
- 11
- 76
- 110
9
votes
2 answers
Can I edit React components without reloading the browser?
If React offers DOM reconciliation, is it possible to dynamically reload component's code and re-render it after I edit it?
I'm looking for a solution that allows me to edit JSX file, save it, and have the component update itself in the browser,…

Dan Abramov
- 264,556
- 84
- 409
- 511
9
votes
2 answers
Wrong CSS Path - Live Reload issue with Grunt
I have this setup in my Gruntfile.js
module.exports = function(grunt) {
grunt.initConfig({
less: {
development: {
options: {
compress: false,
yuicompress: false,
…

Zeno Popovici
- 589
- 3
- 15
9
votes
6 answers
Getting gulp to work with livereload
I have got my Gulpfile to compile my sass and am only a "live-reload away from dumping codekit". I am struggling getting this style injection to work though. I am trying to set this up: https://github.com/vohof/gulp-livereload
And when i run gulp in…

Malibur
- 1,695
- 5
- 22
- 31
8
votes
0 answers
Spring LiveReload and Devtools without Spring Boot
Is it possible to use Spring devtools and Livereload with Spring4 without using actual Spring Boot?
I am working on a legacy Spring 4 project and having it would save a lot of time.
I am used to these features from Spring 5 Boot.
Many thanks
Vito

Witold Kaczurba
- 9,845
- 3
- 58
- 67
8
votes
1 answer
ReactJS App on PHP backend - how to hot reload on local machine?
I am developing a ReactJS-App that gets served by a PHP backend. On my local machine I set up MAMP with a virtual host pointing to my project's root and I use webpack to bundle my React-App.
Since I really enjoy working with hot reloading I now try…

Niels
- 372
- 2
- 15
8
votes
3 answers
How can I speed up Angular CLI Live Reload - 1-2 minutes per change
I have been using AngularCLI for my ng2 project and for the last few months it has been great. In the last few weeks, it seems to be getting slower and slower.
If I make a simple HTML change it now takes between 1 and 2 minutes to run with "ng…

Rodney
- 5,417
- 7
- 54
- 98