Questions tagged [hot-reload]

Use this tag for questions about the hot-reload functionality of programming tools.

Hot-reload is the ability to view the effects of programming changes as soon as they are made without having to manually perform additional actions such as compiling, deploying, reloading, or restarting. These steps may still happen, but they are automatically performed by an agent that watches for changes to the source code.

Using hot-reload decreases the time for a development cycle and prevents developers from wasting time when they forget to perform steps after making changes then can't figure out why their changes didn't work.

415 questions
0
votes
1 answer

Disable cache for specific script or stylesheet files in chrome

I am developing the web app which uses some external scripts and stylesheets and using Google Chrome for debugging the app. Certain web pages in the app contains too many external files(Such as script.js and style.css), And while debugging I only…
Viral Limbani
  • 110
  • 2
  • 6
0
votes
2 answers

Android studio Flutter hot reload button is not working

In android studio my hot reload and hot restart buttons are always inactive. https://i.stack.imgur.com/liqEv.jpg Android studio version:3.4 android studio sdk tools version:26.1.1 flutter doctor no issues
0
votes
1 answer

Hot reload button disabled in android and CTRL+S is not working

I have installed the android studio and make all the setup to run flutter application all done good but since I installed all this setup hot reload button on the top bar is disabled. I restarted IDE but it did not work CTRL+S is not working in my…
0
votes
0 answers

Enable hot reloading on the note 9 for use w/ expo

Anybody know how to access the hardware menu on the note 9? I need to be able to turn on "Enable Hot Reloading" as seen in this picture...
Landon
  • 528
  • 2
  • 4
  • 22
0
votes
1 answer

Flutter hot reload not working on tablet emulator

I am developing an app in Flutter with Android Studio 3.3.1. I have just started the project, deleted a few boilerplate code about the default counter app and also created a tablet emulator. I can run the code in the tablet without any problem…
codeKiller
  • 5,493
  • 17
  • 60
  • 115
0
votes
1 answer

Nodemon and babel-node restart multiple times

I'm using nodemon with babel-node in development environment. I'm working on Windows 7 and every time I change my code, nodemon restart multiple times. I searched on google and even in stackoverflow and github, the temporary solution is just:…
trungducng
  • 395
  • 1
  • 7
  • 19
0
votes
1 answer

Running Hot-reload in Vagrant VM

I'm trying to develop a nuxt app on my Laravel Homestead Vagrant box since that's how (Nginx on Ubuntu) it will be served up live on the web, but there doesn't seem to be a way to watch files when it's being served on the vm. If I run yarn dev on my…
secondman
  • 3,233
  • 6
  • 43
  • 66
0
votes
1 answer

How to programmatically hot reload static resources like xhtml in wildfly server for libs present in exploded war

I have exploded war file based on JSF in wildfly 10. I have multiple jar files with XHTML and CDI beans which are present inside the lib of exploded war. If I change the content in XHTML file present in source related to the jar present in lib…
Raj Kumar
  • 347
  • 3
  • 11
0
votes
1 answer

vscode fails to HotReload on latest Flutter version

After latest Flutter 1.0 stable and Dart update to vscode, I,m unable to use hotreload from vscode. If I run it from a terminal everytnhing works fine. Flutter doctor has no complains and I'm not sure how to fix it. I tried to uninstall flutter and…
Rasmus Christensen
  • 8,321
  • 12
  • 51
  • 78
0
votes
0 answers

The internal of hot reloading

I have been using webpack hot reload in development and it is awesome. It saves me a lot of time. I have been searching over the web today to get a good grasp of how it actually works and have not found any good explanation about the internal…
notQ
  • 229
  • 3
  • 14
0
votes
1 answer

Hot Swap,Hot Reload,Live Reload

I feel quite confused with the three words, what's the difference between them? The picture is from Hot Swapping
Vikki
  • 1,897
  • 1
  • 17
  • 24
0
votes
0 answers

how to supervisor a new GenServer on Erlang VM do hot upgrade?

I'm exploring Elixir language, also deep into Erlang environment recently. I want to know how to use hot upgrade in this situation: Usually we deploy a application begin with a root supervisor. After it's running for a few weeks, I want add a new…
LoranceChen
  • 2,453
  • 2
  • 22
  • 48
0
votes
0 answers

Flutter runs the basic demo application everytime

Flutter runs the basic demo application every time I run the app. My code changes are reflected only after performing a hot restart. I tried running flutter clean but no help. This is really frustrating. What could be the reason?
Chaythanya Nair
  • 4,774
  • 6
  • 32
  • 40
0
votes
1 answer

Webpack Hot Module Replacement + React

Probably it's one of thousands of similar questions, but I still didn't see any answer about how to make HMR REALLY work. I did all that manipulations, described in docs and in every answer you can find all over internet: enable "hot" option of…
jeron-diovis
  • 788
  • 1
  • 8
  • 19
0
votes
1 answer

why the use of window in webpack entry file will affact the React hot reload?

Env: React@16.2.0 + React-Router@3.2.1 + Redux@5.0.7 + webpack@3.5.6 Entry File: index.js const MOUNT_NODE = document.getElementById('root'); // Line A const __DEV__ = window.__DEV__; let render = () => { const App =…
SKing7
  • 2,204
  • 4
  • 21
  • 29
1 2 3
27
28