How should electron build be handled?
See original GitHub issueI noticed in the package.json
there does not seem to be any reference to actually packaging up electron builds for distribution.
I am currently trying to wire something up using electron-builder but wondered if there was something I was missing?
Cheers.
Issue Analytics
- State:
- Created 7 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Common Configuration - electron-builder
Common Configuration. electron-builder configuration can be defined. in the package.json file of your project using the build key on the top level:.
Read more >A Comprehensive Guide to Building and Packaging an ...
Before you can package an Electron app, you first must build one. ... There is a secure way to handle communicating with your...
Read more >Electron Build Desktop Apps HTML\CSS\JS - Medium
In this tutorial we are going to cover the build and deployment of your Electron App, using a third party library electron-builder which...
Read more >Build Instructions | Electron
Follow the guidelines below for building Electron itself, for the purposes of creating custom Electron binaries. For bundling and distributing your app code ......
Read more >An Introduction to Building Desktop Applications with Electron
The Main process is responsible for creating web pages. It does this by creating a new instance of the Electron.js BrowserWindow object. This ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
You can use electron-builder, maybe we should add it to package.json later
Pretty new to this stuff, is there any sample flow/package.json to for the app directory on how to compile a working app with electron-builder? Edit, got it working, though I’m not sure this would be the correct way:
Also a small change to the app/index.js so isDev is resolved differently for the elctron build:
now a npm run build in the app directoy produces a valid and running AppImage in the app/output directoy.