November 2019
Beginner
436 pages
8h 52m
English
The fastest way to start the project is to use the React library and the Create React App tool. Follow these steps to get started:
npx create-react-app crypto-walletcd crypto-wallet
npm install -D electron
As you already know, a typical Electron application requires a main entry in the package.json file. We are going to use the public/electron.js file so that we can create a distributable package without any effort.
{ "name": "crypto-wallet", "version": "0.1.0", "private": true, "main": "public/electron.js", ...Read now
Unlock full access