1,456 questions
0
votes
0
answers
26
views
Transparent, unfocusable and clickable BrowserWindow in Electron
I am creating a button that is clickable but doesn't bring the app to the foreground. To achieve this I implemented the button as a separate BrowserWindow with focusable: false and its parent set to ...
0
votes
0
answers
72
views
electron-builder custom install path
I have the below build script:
"build": {
"appId": "com.yourcompany.gamelauncher",
"productName": "My Game",
"directories": {
...
1
vote
0
answers
141
views
electron Process failed: rpmbuild failed (exit code 1)
I don't know why I have this error when trying to make dist from fedora with rpm and I have everything about rpm that says it is not there and nothing works, I will leave the package.json and the ...
0
votes
0
answers
40
views
Electron-builder content is not available for windows build production but work on mac and linux
i have a challenge since 3 days and even chatGpt couldn't resolve my issue :)
I have a react/capacitor/electron app packaged with vite to build. Everything ok for capacitor and Mac/Linux Electron. But ...
0
votes
0
answers
32
views
Pass base URL to .exe installer when downloading it
I have my Azure pipeline generating a .exe installer file to be downloaded by user when clicking a download button in web application. The user will be able to install the electron application through ...
0
votes
0
answers
84
views
Electron Nodejs App breaks when signed, but works unsigned
This is probably a rookie error, so bear with me please.
I have a built an app for ARM Mac that works when building it without explicitly signing it as well as in dev mode.
When successfully signing ...
1
vote
0
answers
99
views
Electron with Webpack, React & TypeScript - __dirname is not defined in Renderer Process
I’m building an Electron app using the following stack: Webpack, TypeScript and React.
I manually build the app using:
npx webpack --config webpack.main.config.ts
npx webpack --config webpack.renderer....
1
vote
0
answers
90
views
How to fix unable to build chain to self-signed root for signer, while building macos app for appstore using electron?
I am trying to build my app into a mas file using electron on vscode so that I can share it to the app store.
I have bought the dev membership, have certificates setup, have key on my keychain. So I ...
0
votes
0
answers
51
views
Electron Vite dist build not referencing dynamically imported form-data package required by Axios for dist build
Im building an Electron App with Vite that uses Axios. It seems that Axios requires a dynamically imported package called form-data. When running my built .exe portable after Ive built it I get the ...
0
votes
0
answers
75
views
After I used electron-builder to package the application and uploaded it to transporter, four warnings related to application Helper appeared
After I used Electron and electron-builder to package the application and uploaded it to transporter, four warnings related to the application Helper appeared as follows.
"Cannot be used with ...
-1
votes
1
answer
314
views
Getting Error can not find module call-bind-apply-helper in window electron js production build
error message
I have tried electron js production build in linux it is working fine but when creating build in production it is giveing me error, It was stopping suddenly and giving error,
for this i ...
0
votes
0
answers
77
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
48
views
Custom procotol in Electron to replace file protocol for Angular app in production
I've created an Angular app in Electron and everything has been working great until now. For security reasons, I've disabled the Electron fuse grantFileProtocolExtraPrivileges which means I can no ...
0
votes
0
answers
50
views
Unable to Access Webview Methods and Attributes in Electron + NextJS App
I tried using a webview in a an Electron app to implement a simple browser
here's the index.html for that
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="...
-1
votes
1
answer
129
views
How to register electron app for 'tel' protocol at the time of installation?
Electron version 30
Using Electron builder (25.0.0-alpha.9)
At the time of installation, I want my app to get registered for handling the 'tel' protocol. My application should be listed in the ...
0
votes
0
answers
282
views
Electron app with bundled Node.js server fails to load Vite app on systems without Node.js
I'm developing an Electron application that bundles a Node.js server to serve a Vite-built React application. The goal is for the application to be self-contained and work correctly on systems that ...
0
votes
0
answers
22
views
Using electron-builder, how to include a dynlib on Linux?
I build my application with Electron-builder. On Linux I need to ship a .so file used by the .node library, but the file is nowhere inside the app.asar file.
On Windows I do the same for a .dll file ...
0
votes
0
answers
26
views
Problem with Flask subprocess using Electron-builder
I'm testing with electron, it's the first time I've used it to package a desktop application. My application is composed of a frontend made in React and the backend in flask.
My flask application was ...
6
votes
0
answers
492
views
How to skip signing when building with electron-builder
Here is my electron-builder.json:
{
"$schema": "node_modules/app-builder-lib/scheme.json",
"asar": true,
"directories": {
"output": "...
0
votes
0
answers
72
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
22
views
Electron app with CRA failing child process creation
My project contain a Node server (child) process in Electron app for Windows, which works well in development but fails in production. The project is build using electron-builder and CRA used to ...
0
votes
0
answers
44
views
Error referencing static files with Vue (CLI) in Electron.js
I'm starting to study Electron and lately I've been having problems with static file references after building an application. I've tried a lot of things and none of them have worked.
My project ...
0
votes
1
answer
398
views
How to include tailwindcss styles in Electron app using electron-builer?
I'm developing a simple electron app. I'm using React with vite for the frontend of the app. After adding tailwindcss to the project the application shows just a white page when built as a production ...
0
votes
0
answers
148
views
Why does my Electron + React app show "404 Not Found" after production building but works fine in development mode?
I'm working on a project using Electron and React. The app runs perfectly in development mode, but after building it into an .exe or .dmg file, I encounter the following error when launching the ...
0
votes
0
answers
63
views
Electron Update : Uncaught ReferenceError: global is not defined
We are trying to update node from 12 to 20 and electron version from 11 to 31.
I have an Electron based application. we do webpack in the render process. It throws error when I run the app after ...