This is a demo for learning Electron. It is referenced from Creating Desktop Apps with Electron Tutorial and Build an Electron App in Under 60 Minutes.
# 1. Clone repository
git clone https://github.com/mingcw/electron-demo-cryptoapp.git
# 2. Install dependencies
npm install
# 3. Run the app
npm start
Use a packager called electron-packager to create the OS-specific builds of the Electron app.
You can replace the icon in the asset/icons/{mac|win|png}/ directory with your own icon. And then,
# Build Mac App
electron run packager-mac
# Build win App
electron run packager-win
# Build Linux App
electron run packager-linux
Or, you can read the both of following blogs and then customize your app: