November 2019
Beginner
436 pages
8h 52m
English
Let's review the application startup process:
"start": "electron ."
As you already know, Node.js provides us with access to environment variables so that the application can perform different behaviors, depending on external parameters.
{ "start": "DEBUG=true electron ." }
For Windows users, the start script should be slightly different:
{ "start": "SET DEBUG=true && electron ." }
{ "scripts": { "ng": "ng", "serve": "ng serve", "start": "DEBUG=true electron .", "build": "ng build", "build.prod": "ng ...Read now
Unlock full access