Questions tagged [livereload]

LiveReload applies CSS/JS changes to Safari or Chrome w/o reloading the page (and autoreloads the page when HTML changes)

541 questions
272
votes
2 answers

What exactly is Hot Module Replacement in Webpack?

I've read a few pages about Hot Module Replacement in Webpack. There's even a sample app that uses it. I've read all of this and still don't get the idea. What can I do with it? Is it supposed to only be used in development and not in…
Dan Abramov
  • 241,321
  • 75
  • 389
  • 492
50
votes
4 answers

How to use grunt-contrib-livereload?

I'm trying to use grunt-contrib-livereload, but can't seem to figure it out. The readme seems to skip over everything that I need explained, and then ends with an example that doesn't work when I try it and doesn't seem directly related to the…
davidtheclark
  • 4,398
  • 4
  • 28
  • 42
30
votes
1 answer

How can I get Grunt/Watch/LiveReload to reload Sass/CSS without a full page refresh?

So far, I've gotten everything working how I want (which is monitoring all the files I want and refreshing whenever there is a change), other than I'd love to be able to make modifications to Sass/CSS and have it refresh in the browser without a…
Trey Piepmeier
  • 946
  • 2
  • 11
  • 20
27
votes
5 answers

How to automatically reload Django when files change?

How to automatically monitor .py, .js and other source code files to restart a Django (or any other for that matter) application and refresh the browser when the source changes? This is possible in Rails using guard, in JS apps using…
metakermit
  • 16,992
  • 10
  • 76
  • 91
26
votes
3 answers

Disable / turn off LiveReload server in Emberjs / Ember-cli

I use Cloud9 IDE, which only exposes port 80 and prevents LiveReload from connecting. I get this error: GET https://myapp.c9.io:35729/livereload.js?snipver=1 net::ERR_CONNECTION_REFUSED Unless someone knows of a fix, I'd like to simply turn this…
James Gentes
  • 5,882
  • 4
  • 36
  • 52
24
votes
8 answers

How can I add live-reload to my nodejs server

This is how can i run my server nodejs. I need to live reload my server when i make changes to the code in the front-end dev "start": "node server.js"
Rebai Ahmed
  • 1,025
  • 1
  • 10
  • 18
24
votes
2 answers

Live reload JavaScript in Chrome

I know you can live-edit JS from within the Source panel of Chrome Developer Tools, and I know there are systems for live-reloading of CSS, but can you live-reload JS from the source location (either a URL or local disk, or leveraging Workspaces…
Yang
  • 15,052
  • 13
  • 96
  • 137
20
votes
4 answers

Random reloads Angular 4 (live-reload)

I am currently working on a project in Angular 4 and for some reason I keep experiencing random reloads when I am previewing the app on a browser. (I am running in prod mode). Anyone experiencing the same issue? Any solution found? Thanks.
Alex
  • 233
  • 1
  • 10
20
votes
4 answers

How to livereload Django templates?

How can I livereload Django templates?
Nikolay Georgiev
  • 907
  • 1
  • 10
  • 20
19
votes
1 answer

What are the conceptual differences between live reloading, hot reloading, and hot module replacement?

I've seen a lot of posts and publications about live reloading, hot reloading, and hot module replacement, referring to different practices to reflect changes in code immediately in the browser when working in the web client/FE layer. I have a fair…
Amy Pellegrini
  • 2,791
  • 1
  • 9
  • 19
19
votes
6 answers

How to enable Live Reload in iOS Device running React Native app?

I'm trying to enable Live Reload mode, but there is no such item in Dev Menu:
protspace
  • 1,399
  • 1
  • 19
  • 24
19
votes
2 answers

Gulp watch and compile less files with @import

I'm trying to get my head around gulp to watch and compile a .less project + livereload. I have a style.less file which use @import. When i run the gulp task it doesn't seem to understand the imports. When I modify the main less file, gulp compiles…
Yannick Schall
  • 26,103
  • 6
  • 27
  • 42
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
  • 706
  • 3
  • 6
  • 19
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
  • 5,746
  • 5
  • 29
  • 44
16
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?
1
2 3
36 37