I am new to Electron and love it. Just finished writing a wonderful little app for the entertainment industry and am having trouble packaging it. Also notice that there is an electron compiler and a packager. Which one do you use that is most convenient for a windows end user ? I work with mostly windows people in a certain segment of the entertainment biz, so being a Linux user you get tons of flack if something does not work. Here is the problem :
package.json:
{
"name": "Sick Bay Scanner by H.A. Hobson",
"productName": "SickBayScanner",
"version": "1.0.1",
"main": "main.js",
"devDependencies": {
"electron-winstaller": "^2.6.3"
}
}
Packaging argument and outome :
me@debian:/$ electron-packager --electron-version=1.7.9 . sound/SickBayScanner --overwrite --asar=true --platform=win32 --arch=x64 --icon=assets/icons/png/1024x1024.png --prune=true --out=release-builds
WARNING: --asar does not take any arguments, it only has sub-properties (see --help)
Downloading tmp-6742-0-electron-v1.7.9-win32-x64.zip
[============================================>] 100.0% of 53.89 MB (421.05 kB/s)
Packaging app for platform win32 x64 using electron v1.7.9
EPERM: operation not permitted, open '/dev/core'
If you could explain how to create electron apps that are as easy possible for an end user to use, whether packaged or compiled, and point out my own packaging issue, would be very appreciative. Thanks !