Questions tagged [livereload]

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

564 questions
5
votes
0 answers

How to hot-reload JSX in React apps

I have used the CRA or (create-react-app) a lot while starting react. The hot reloading of CSS changes work and are awesome. Whereas hot-reloading of JSX and class functions don't work - if I change JSX or some event handler - the page reloads. Some…
Probosckie
  • 1,585
  • 4
  • 25
  • 40
5
votes
1 answer

mvn spring-boot:run vs Run

I'm testing spring-boot-devtools with livereload on intelliJ. I have simple SpringBootApplication that works fine. When I start the app from maven command "mvn spring-boot:run" all works fine excepting that livereload server dont' start. No message…
jagr
  • 309
  • 1
  • 6
  • 16
5
votes
1 answer

gulp refresh active tab after code change in chrome extension

I'm developing a chrome extension and I want to automatically refresh the active tab after a code change I got gulp-open to work so I don't need to navigate to chrome://extensions anymore and manually click "reload" now only the active tab refresh…
5
votes
2 answers

Get livereload to work with Sails.js

I am new to both Sails and grunt so I might be missing the obvious. I am trying to automatically refresh my sails app in the browser whenever files change. I start the app with sails lift and it runs on the default port 1337. I tried adding…
5
votes
3 answers

Ionic live reload feature not reloading application

I tried to use live reload feature with ionic serve and ionic emulate ios --livereload. Server starts well, application is displayed on simulator (or in browser) and it works smoothly. When I change a file (a js or html in www directory) and save…
Blackus
  • 6,883
  • 5
  • 40
  • 51
5
votes
1 answer

Livereload on Rails not showing SCSS changes

I have the following setup: rails 4. all SCSS and HTML are in app/assets/stylesheets | templates Gemfile: gem 'guard' gem 'guard-compass' gem 'guard-shell' gem 'guard-livereload' Guardfile: guard :livereload do …
ilyo
  • 35,851
  • 46
  • 106
  • 159
5
votes
2 answers

How to permanently enable Sublime Text 3 LiveReload plugin

I recently installed the LiveReload plugin for Sublime Text 3. I also installed the LiveReload Chrome extension. Everything works great, however there's one remaining headache. I need to go into package control in Sublime and enable the LiveReload…
MattDionis
  • 3,534
  • 10
  • 51
  • 105
5
votes
1 answer

Which JS frameworks besides React allow live-editing?

I recently implemented live editing for React components, so you can edit their markup and code and have changes appear in the browser without reloading or throwing the state away: It works on top of Webpack Hot Module Replacement (which is like…
Dan Abramov
  • 264,556
  • 84
  • 409
  • 511
5
votes
1 answer

chrome file system inspection - reload on change

is there an extension for loading an entire page on change in file system in entire folder. I am right now using Tincr but it doesn't allow me watch the entire folder. there is an auto reload for firefox which watches folder and filters on extension…
coool
  • 8,085
  • 12
  • 60
  • 80
5
votes
1 answer

Integrate gulp-livereload with Watchify

I'm using Substack's Watchify for better Browserify builds, within a Gulp watch task, like so: var gulp = require('gulp'); var source = require('vinyl-source-stream'); var watchify = require('watchify'); var hbsfy = require("hbsfy").configure({ …
benhowdle89
  • 36,900
  • 69
  • 202
  • 331
5
votes
4 answers

Livereload of index.html with Gulp

I am attempting to have my browser update when I make a change to index.html in the root of my project. Livereloading is working fine when updating the CSS. I have removed the efforts I made to get this working in my gulpfile.js,…
Pete Norris
  • 1,056
  • 7
  • 24
  • 36
5
votes
1 answer

Grunt, Livereload with maven and jetty server

I am wondering if its at all possible to use grunt and livereload with my current java web application that is using maven and jetty? The way my current java web application works is that I run maven to build the webapp and it also creates a local…
Anks
  • 485
  • 9
  • 27
5
votes
3 answers

Clojure live browser reload on Linux

Is there something like Rack-LiveReload that could be used along with a tool like Guard-LiveReload for Clojure development? I really cannot make do without live reloading now that I have used it. If there is nothing more convenient I could download…
Lee
  • 8,354
  • 14
  • 55
  • 90
5
votes
2 answers

Configuring grunt-ts and make it work with LiveReload

I am trying to use TypeScript inside a Yeoman / Grunt project. To compile TypeScript I use a grunt plugin called grunt-ts, the compilation of the .ts files works just fine, but the live reload doesn't works: When I run grunt server I correctly get…
Mimo
  • 6,015
  • 6
  • 36
  • 46
5
votes
1 answer

Yeoman: Triggering LiveReload on change of SCSS files

I've got the latest yeoman stack, and I just upgraded generator-webapp to master as per: https://github.com/yeoman/generator-webapp/pull/67 to get livereload working properly. HTML files and css files seem to be working with livereload just fine,…
Paul Odeon
  • 4,407
  • 1
  • 37
  • 37