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

how does EVM hold code version in a process and what's the OTP do in term of hot reload?

I'm exploring Elixir/Erlang hot reload and attempt to know how does Erlang hot reload works. some post here give a glance of hot swap and here, from elixir, give a key step of hot swap. Besides, I give a try with Erlang ranch which is famous tcp…
LoranceChen
  • 2,453
  • 2
  • 22
  • 48
0
votes
2 answers

Hot Reload with webpack (reactjs for front) and .NET backend

I'm trying something here that can really ease my pain. I just took back a project where the front end used is reactjs and the backend is .NET ASPNet 4.6. I'm just trying to get hot reload work with webpack (as it's much more better than building…
foufrix
  • 1,324
  • 4
  • 21
  • 45
0
votes
1 answer

log4j2 monitorInterval springboot not working

Im trying to get hot reloading to work with my logging level. The monitorInterval Should do the trick for me, but for some reason it doesnt work. My log4j2.xml file looks like this:
Mike Nor
  • 227
  • 1
  • 9
  • 18
0
votes
1 answer

Hot reloading in Angular Projects stopped working

We have an Angular 4 application created through CLI which runs on its port (51000), but gets served from a node proxy running at port 52000, at url 52000/app (which would serve from 51000), whenever changes were made to the web app, the page…
skjagini
  • 3,142
  • 5
  • 34
  • 63
-1
votes
1 answer

Hot reload Flask app running on Docker with Gunicorn not working

As the title states, I am working with a dockerized Flask app with Gunicorn, but the hot reload is not working. I know I have to map the local file system to that of the container, so that it is aware of the changes and Flask on Debug mode will do…
Xar
  • 7,572
  • 19
  • 56
  • 80
-1
votes
1 answer

Is there a way to enable a reload on save feature in Visual Studio for Mac?

I've been searching for over an hour now, trying to find if there's a way to have Visual Studio reload my React web application on save. Currently I have to restart the run every time I want to see changes. Store extensions won't work with the Mac…
-1
votes
1 answer

Getting error in hot reload and showing exception

I am getting following error on hot reload: Dart Unhandled Exception: 'package:flutter/src/widgets/navigator.dart': Failed assertion: line 4041 pos 12: '!_debugLocked': is not true. Here is log: [VERBOSE-2:shell.cc(210)] Dart Unhandled Exception:…
Code Hunter
  • 10,075
  • 23
  • 72
  • 102
-1
votes
1 answer

VSCode flutter hot reload

When I enter flutter run into the terminal, everything is fine and my app runs on my iOS emulator. However, it opens a new line MacBook-Pro:testApp mattk$, and if I press r and hit enter, it returns -bash: r: command not found. If I "start without…
Matt K
  • 51
  • 7
-2
votes
1 answer

Is there a way to do 'interactive programming' in OCaml?

I found this post on Null Program titled 'Interactive Programming in C' and I was wondering if there was a way to do that in OCaml. I tried googling my goal, but I cannot seem to find any information related to it.
-2
votes
1 answer

How to know if hot reload is enough or not to apply the changes in flutter app?

Flutter added a very good feature, which is the hot reload I tried it several times but I noticed that it isn't working with everything for example if I changed the background color of the app and perform hot reload the color will change but there…
1 2 3
27
28