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
18
votes
2 answers
Live reload with Asp.Net 5
In Asp.Net 5 the development is faster because it compiles on save.
But I still have to refresh the browser manually.
Is there a live reload option in Visual Studio, or should I use a gulp plugin for that?

roeland
- 6,058
- 7
- 50
- 67
18
votes
5 answers
How do I install LiveReload on Sublime Text 3?
I'm using Sublime Text 3 and want to use LiveReload. I have a browser plugin for Chrome already installed. Node.js is also installed.
For Sublime Text 3 Live Reload this plugin must be installed:
https://github.com/dz0ny/LiveReload-sublimetext2…

QJan84
- 786
- 3
- 9
- 22
18
votes
8 answers
gulp.js livereload with express server?
I am trying to setup my gulpfile.js to use livereload on an express server without much luck. I see examples out there but they seem to be related to a static file…

Timmerz
- 6,090
- 5
- 36
- 49
17
votes
4 answers
Sync code changes in electron app while developing
Are there any tools to live reload electron app when code is changed similar to browser-sync for web?
Whenever we change code for electron app, I am terminating existing running process and relaunching with
electron .
Are they any tools to reload…

Sathya Vikram
- 325
- 1
- 2
- 9
16
votes
7 answers
"Create React App" with Docker
I was wondering if anyone had any experience using create-react-app with docker. I was able to get it set up with a Dockerfile like:
from node
RUN mkdir /src
WORKDIR /src
ADD package.json /src/package.json
RUN npm install
EXPOSE 3000
CMD [ "npm",…

john_ryan
- 1,557
- 1
- 16
- 34
16
votes
9 answers
Ionic --live-reload not running app on device
I can't see my ionic app on my phone when using the --live-reload parameter.
I am using Windows 8.1 and a connected Nexus 5 Android device. The app is the sample sidemenu app created with ionic start demo sidemenu.
When I run ionic run…

Richard Le Mesurier
- 29,432
- 22
- 140
- 255
16
votes
3 answers
How can I use LiveReload with an AngularJS templateURL
How can I get the templateURL to reload when saved using LiveReload and Grunt?
angular.module('meshApp', [
'ngSanitize',
'ngRoute'
])
.config(function ($routeProvider) {
$routeProvider
.when('/', {
templateUrl:…

Daimz
- 3,243
- 14
- 49
- 76
15
votes
3 answers
Grunt livereload with node.js application
I have written an application in Node.js (with Express & socket.io) and I would like to use Grunt to compile my client-side stuff with livereload while developing and being connected to Node.js application. How can I do this? (Preferably without…

acoder
- 513
- 2
- 5
- 8
14
votes
6 answers
ionic run browser --livereload not working
i was trying to use live reload on my ionic 2 application. so i found this command
ionic run browser --live-reload
is not working as expected and while making code changes i am receiving console messages
[16:12:47] build started ...
[16:12:47] …

manish kumar
- 4,412
- 4
- 34
- 51
14
votes
3 answers
Why doesn't live reload work with gulp-connect?
I use gulp-connect like this:
gulp.task('watch', function() {
gulp.watch(paths.scss, ['scss']);
gulp.watch(distPaths, function() {
return gulp.src(distPaths)
.pipe(connect.reload());
});
});
The live reload bit works fine.…

Misha Moroshko
- 166,356
- 226
- 505
- 746
12
votes
1 answer
Docker development workflow with node.js
I'm trying to use docker with a node.js web app i'm working on.
I have familiarized myself with the docker concepts and gotten up and running with the example here: https://docs.docker.com/examples/nodejs_web_app/
I get the general process...write…

john_ryan
- 1,557
- 1
- 16
- 34
12
votes
5 answers
Livereload not working in Chrome using Gulp, what am I missing
I'm trying to use Livereload using Gulp, Sublime Text 3 and Chrome but for some reason it doesn't work. Here is what I did.
Installed the Livereload extension in Chrome.
Installed gulp-livereload.
Setup gulpfile.js.
Ran gulp.
What am I missing…

fs_tigre
- 10,650
- 13
- 73
- 146
12
votes
2 answers
gulp-livereload over https?
I've been using livereload chrome extension that inserts a http://[...]/livereload.js into the document. Unfortunately, I'm working on a project that requires https and I expected to replicate that locally but I don't necessary have to do it as I…

punkbit
- 7,347
- 10
- 55
- 89
12
votes
4 answers
Livereload isn't working in gulp
I used gulp-webapp (generator from yeoman) and add some other tasks (like gulp-sass & gulp-coffee).
But now Livereload isn't starting. I need to see something like this
[gulp] Live reload server listening on: 35729
But output looks like
➜ app…

Evgeny Rodionov
- 2,463
- 2
- 15
- 13
11
votes
4 answers
Ember CLI Live Reload Not Working
I've seen other similar questions here and here but neither of those worked for me.
I'm on a mac and simply installed ember cli using npm and I thought it would work out of the box. Here is the server output:
version: 0.1.4
Could not find watchman,…

D. Alvarez
- 351
- 2
- 10