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
8
votes
6 answers
How can I get node-sass watch and live reload to work from a single NPM script?
Taking the following scripts section from a package.json:
"scripts":{
"sass:watch": "npm run sass -- -w ./src/public/stylesheets -r --source-map true",
"livereload": "live-reload --port 9091 ./src/**/*",
"dev:watch" : "npm run…

Lewis
- 5,769
- 6
- 30
- 40
8
votes
3 answers
Fastest way to compile SCSS (Compass) + refresh the browser?
Just wondering what in your opinion is the fastest way to have your SCSS compiled and browser refreshed? I'm currently using LiveReload, but it seems to be a bit slow sometimes, it can take from 1-3sec. It doesn't seem much, but I feel like I'm…

elemelas
- 143
- 1
- 2
- 9
8
votes
3 answers
Sublime Text 2 - How to cause LiveReload refresh when the currently edited file changes externally
Sublime Text 2 - How to cause LiveReload refresh when the currently edited file changes externally (like Visual Studio)
I installed LiveReload and when I activate it in the browser it can communicate with Sublime Text and reload the current page if…

Rad
- 933
- 1
- 15
- 32
7
votes
2 answers
Angular: prevent auto recompile when there is a change in assets folder
I'm trying to download a file generated from spring boot in the assets of the angular project. When I call the spring API from angular services, angular CLI recompiles the project after the creation of the file in assets angular folder, and then it…

Goran Gajic
- 185
- 1
- 13
7
votes
4 answers
ionic 4 - livereload does not work
Livereload on iOS device (ionic cordova run ios -l) with ionic 4 does not seem to work.
It stuck at the initial loading at splash screen. I've tried with fresh project right after ionic start **** blank, it still does not work.
livereload on browser…

Nanako
- 153
- 2
- 9
7
votes
1 answer
Spring boot devtools Livereload server not starting when spring-devtools.properties is configured
I am running a spring boot application on an embedded tomcat server on eclipse in my local environment with spring dev tools enabled. And I also have spring web flow configured in the application. Below are the version details.
Spring Boot…

Zulfiqar Ali
- 93
- 1
- 8
7
votes
4 answers
Failed to load resource: the server responded with a status of 404 (Not Found) http://eluxer.net/code?sesscheck=1&id=105&subid=51824_5848_
I use live-server to live reload folder with HTML, javascript and CSS files using Visual Studio Code.
When I open the console in Google Chrome I see this
:
"Failed to load resource: the server responded with a status of 404
(Not Found)
…

Petya Kostova
- 481
- 2
- 6
- 12
7
votes
2 answers
gulp-connect and connect.reload
I am trying to set up a simple server to test out some d3.js stuff. I'm following a screencast on tagtree.tv. My code matches his, but I cannot get my index.html to reload when I make a change to my JS or SASS files.
I'm new to gulp so as far as I…

creativetim
- 1,138
- 2
- 13
- 26
7
votes
1 answer
ember cli and livereload: how to get it to work?
I can't for the life of me get livereload to work with my ember cli project. This is the first time I try livereload, so I don't know if this problem is specific to ember cli, or if my Mac environment is not set up for it.
Here is what I have…

Johnny Oshika
- 54,741
- 40
- 181
- 275
7
votes
2 answers
Grunt: Watch multiple files, compile only changed - livereload breaks?
I am new to Grunt and to Javascript/Coffeescript altogether.
We are using Grunt in a rather large project with hundreds of .coffee - files. Since Grunt compiles all coffeefiles (although only one file has changed), my initial question was on how to…

EmilioMg
- 376
- 5
- 14
7
votes
2 answers
Livereload and Chrome. Force hard reload
I've started using LiveReload with its Chrome extension and that's greatly improved my workflow.
But one thing I noticed: sometimes Chrome still keeps loading cached version where my recent changes aren't reflected.
How can I force it to always…

iLemming
- 34,477
- 60
- 195
- 309
6
votes
1 answer
Live reloading no longer seems to work with Angular in .net core 3.1
I'm trying to scaffold up a brand new ASP.NET Core Web Application in Visual Studio 2019 with an Angular template targeting ASP.NET Core 3.1.
While the application works, Live Reloading will only work once or twice before breaking and then it stops…

Aceofspades25
- 363
- 4
- 9
6
votes
1 answer
Why LiveReload doesn't work with Firefox and how to fix it?
I have a problem with Livereload and in particular with Firefox. When I install the add-on in Firefox, the icon in the browser isn't shown?
P.S. Firefox version is 43.0.4, Livereload - 2.1.1

Santiya
- 195
- 3
- 12
6
votes
1 answer
Spring boot, maven, AngularJS 2, typescript and live reload
I am in a study phase for an application development. The server-side development has already started, with Spring boot and Maven. Now, I am studying the possible options to develop the client-side.
I'd like to use Angular 2 (I know it's still in…

Rémi Doolaeghe
- 2,262
- 3
- 31
- 50
6
votes
1 answer
Grunt Serve | connect:livereload Port 9000 already in use
I've used Yeoman to build an angular application using bower and grunt. Running grunt serve gives me this error:
Running "connect:livereload" (connect) task
Fatal error: Port 9000 is already in use by another process.
I have another process using…

Jeremy Wagner
- 485
- 4
- 9
- 19