November 2019
Beginner
436 pages
8h 52m
English
In this section, we are going to learn how to package the Electron application for distribution.
Let's start by installing the electron-builder library and configuring the package scripts:
npm install -D electron-builder
"homepage": "./","scripts": { "electron": "electron .", "start": "react-scripts start", "build": "react-scripts ...Read now
Unlock full access