November 2019
Beginner
436 pages
8h 52m
English
Live Reloading (or Hot Reloading) is a feature that allows you to reload your browser every time code changes. Developers often use this feature when they're building and testing web applications. Given that Electron contains a browser instance, the Live Reloading feature can apply to desktop applications as well.
You already know how to serve an Angular CLI application locally and that you can navigate to http://localhost:4200 to use it in the browser. The solution for local development is to make your Electron application use the same address to load the main index.html content, instead of the prebuilt file. Let's get started:
Read now
Unlock full access