498 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
0
answers
42
views
Disable Windows code signing with Electron Builder
I’m using Electron Builder to package my application. I’m doing this on a Macintosh because I can, and that’s my development environment.
The command is:
npx electron-builder build --win --x64;
It ...
0
votes
0
answers
48
views
How can I prevent @electron/packager and @electron/get from downloading of SHASUMS256.txt and attempting to validate artifact?
The file electron-v38.4.0-win32-x64.zip already exists in the Electron cache directory at:
D:\sandbox\electron\Cache170円c37ecabce6b93655518bed5da6604d76afeb91dd19907c5ab5f7b83d3d891\electron-v38.4.0-...
0
votes
0
answers
28
views
Electron Push Reciver With Latest Firebase APIs
Earlier we used the electron-push-receiver NPM package, Now these https://fcm.googleapis.com/fcm/connect/subscribe we are getting a 404 Error.
index.js file source
const uuidv4 = require('uuid/v4');
...
0
votes
0
answers
90
views
My Electron App is Not Loading After Packaging
Checked app.asar contents
I verified that build/index.html and other necessary files exist inside app.asar, meaning they are correctly included in the package.
✅ 2. Modified electron.js to correctly ...
0
votes
0
answers
23
views
Avoid writing Cookies in file in case of MAC in electron
The following code is used to load my application. When the URL is accessed, an API call is made that attempts to set cookies, such as session_id. On macOS (DARWIN), Electron creates a cookies file to ...
0
votes
0
answers
86
views
React + Electron Builder v25.1.8 Code Signing and Notarizing Stuck
I have React Project Web Application, wrapping with Electron to build as Desktop Application. I am trying to code signing & notarizing with following documentation https://www.electron.build/code-...
0
votes
0
answers
55
views
Unexpected character '�' . You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file
I am using react-electron to make desktop applications.
I am using npm koffi package to enable dll safe mode.
But while making using npm run package, I am getting the following issue:
given below is ...
0
votes
1
answer
179
views
How does electron-forge/publisher-github work?
I have my created my github token and set GITHUB_TOKEN value in my env, but I get to the "distributables" step which is strangely misspelled and then it dies. Its like its looking for a ...
1
vote
1
answer
176
views
form Electron app: Form fields become disabled after deletion on Windows, but work fine on Mac after form submission
I'm experiencing an issue with my Electron app when executed on Windows that doesn't occur on macOS. It's built as a desktop app. Here's the problem:
When I click the "Delete" button to ...
-1
votes
1
answer
90
views
My electron exe app(used to run and react application) is not running
I'm having react-electron app, while making this app as exe file using electron-builder.
After making the exe, if i try to run the exe, blank window is opening. But if i open the the same application ...
0
votes
0
answers
213
views
Issues Creating Windows Installer for Electron App with Electron-Builder and Reducing Application Size
I'm having trouble creating a Windows installer for my Electron app using electron-builder. My app is built with React, and I've configured my package.json scripts to handle the build and packaging ...
0
votes
0
answers
149
views
An unhandled rejection has occurred inside Forge: Error: EACCES: permission denied, scandir
I have an Electron app that I'm trying to package for Flatpak with Electron Forge, but I keep running into this permissions error. I've made sure that the /tmp/electron-packager directory has the ...
3
votes
1
answer
1k
views
Error: EBUSY: resource busy or locked, copyfile
Electron Builder Error: EBUSY: Resource Busy or Locked During Packaging
I'm encountering a persistent issue while building an Electron application using Angular 14, electron-builder, and related ...
0
votes
0
answers
70
views
How to use python in electron js package
My friend and I are buildinf a desktop app using electron js, in there we have a snippet of code that runs in a js file that goes like this:
const scriptPath = await window.spawnAPI.pathJoin('..', '..'...
2
votes
1
answer
161
views
Why is electron zoomfactor working on development but not working in production?
let savedZoomLevel = store.get("zoomFactor") || 1;
webPreferences: {
nodeIntegration: true,
enableRemoteModule: true,
contextIsolation: false,
zoomFactor: ...