November 2019
Beginner
436 pages
8h 52m
English
Instead of stopping and restarting the application each time you need to verify a code change, you can enable the live reloading feature and have the browser or Electron window automatically refresh as you save the changes.
When you start the application with the npm run serve script (or npm start by default), you will see the following output:
You can now view integrate-react in the browser. Local: http://localhost:3000/ On Your Network: http://192.168.0.10:3000/
Note that you need to use port 3000 in this case. Let's update the createWindow function accordingly:
function createWindow() { win = new BrowserWindow({ width: 800, height: ...Read now
Unlock full access