November 2019
Beginner
436 pages
8h 52m
English
Now that you have got a working application, we need to install the Electron dependency and wire the Electron shell window with our code. Let's start by installing the library and updating the package file:
npm i electron
{ "name": "ebook-generator", "version": "0.1.0", "private": true, "main": "main.js", // ...}
"scripts": { "electron": "electron .", "start": "node scripts/start.js", "build": "node scripts/build.js", ...Read now
Unlock full access