Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
32 views

My Electron app starts with a script called main.js. In amongst various setting up processes: I create a BrowserWindow called window. window loads a page called index.html. index.html includes ...
Manngo's user avatar
  • 17k
0 votes
1 answer
35 views

I am trying to import a React component Menu.jsx from App.jsx in my Electron app. No errors are showing up, but nothing is being rendered and are not added to the DOM (the body is empty when I looked ...
Faseeh's user avatar
  • 11
0 votes
1 answer
48 views

I created a serverside Blazor App and "electronized" it by following the instructions in the read me on the electronNET/electron.NET github page. One of the requirements for this app is to ...
user32002036's user avatar
Tooling
0 votes
2 replies
29 views

I have a React web app that I am running inside an Electron app. I am doing this so that I can screen record like so: window.electronAPI.startRecording(); However, some of the content on the screen ...
Andrew Colin's user avatar
0 votes
0 answers
24 views

I’m building an Electron Timer app where multiple notifications may be active at the same time. Initially, each Notification instance was created inside a function, but the "click" and "...
LH Cloud's user avatar
0 votes
1 answer
25 views

I'm developing a Linux application that opens SSO authentication URLs in the default browser. On Ubuntu 22.04 and 24.04, when Firefox is the default browser, clicking the SSO link shows a file picker ...
pareshm's user avatar
  • 5,044
2 votes
1 answer
29 views

Try to open a HTML file that resides inside the packaged app app.asar file. The file is there but Windows complains that cannot find the file. The pieces of the puzzle are: inside the win-unpacked\...
SiliconValley's user avatar
-1 votes
1 answer
50 views

Problem I'm trying to send multiple files from the renderer process to the main process using Electron's IPC, but the file objects arrive empty. Renderer Process: if (files?.length > 1) { window....
Varelion's user avatar
Advice
0 votes
5 replies
41 views

I’m working on an Electron project, and I can generate JSON for my code using JSDoc: jsdoc -X > data.json I want to use this JSON output to create a live, searchable documentation site similar to ...
Ethan Martin's user avatar
0 votes
2 answers
56 views

In my Electron app, navigator.geolocation.getCurrentPosition() always fails. It seems that Electron (Chromium) no longer provides free geolocation and expects a third-party service with an API key (e....
Miguel Coelho's user avatar
-1 votes
0 answers
70 views

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 ...
Sudhanshu Tiwari's user avatar
Advice
1 vote
2 replies
76 views

I’m starting a new project to build an ERP POS application using the MERN stack. I’m confused about whether I should use Electron.js or Tauri to turn it into a desktop/web app. Which option is better ...
Aashir Azeem's user avatar
-1 votes
0 answers
60 views

i am programming an app with vite, svelte@4, electron and electron-builder. if i run electron ./start-electron.js the logo is shown, but after many days of trial and error i still don't get it in the ...
Thronella's user avatar
  • 109
0 votes
0 answers
59 views

I have an Electron application that uses: React for the frontend Node + Express backend inside /Server A SQLite database stored inside the same /Server folder During development, everything works ...
You Cef's user avatar
1 vote
0 answers
57 views

I’m trying to replace a the content of an image URL with the result of a custom protocol. The idea is to get the data from a zip file. The img element looks something like this: <img src="...
Manngo's user avatar
  • 17k
1 vote
0 answers
53 views

Here's a minimal GitHub Gist that runs on Electron Fiddle : It's supposed to show GitHub Copilot (github.com/copilot) in a webview element as if it was in a normal browser : Using the following code ...
KaKi87's user avatar
  • 955
0 votes
0 answers
65 views

My problem: I want to drag a file from my application into the another application like Paint , Windows Excel , Windows Files system ect, but the drop is not happening. I have an Electron app. The ...
EaB's user avatar
  • 53
0 votes
1 answer
55 views

I'm building an Electron application and trying to close a window from the renderer process using window.close(). However, the close event listener I've registered in the main process isn't being ...
Parminder Singh's user avatar
Advice
2 votes
1 replies
57 views

I have made a web application that I want to support as an electron app. My plan was to thinly wrap my existing webapp code in an electron app and support a few small features like global hotkeys. The ...
TenderShortGoldenRetriever's user avatar
0 votes
0 answers
59 views

I'm building a floating mic/system audio visualizer widget in Electron. The widget uses a panel type BrowserWindow that stays on top of all windows, including fullscreen apps. The issue is that when ...
Johannes Bingen's user avatar
1 vote
0 answers
41 views

I added firebase-electron to my Vue CLI Plugin Electron Builder project using yarn, but I encountered the following error. I'm using Webpack 4.43.0. How can I resolve this error? error in ./...
m-ogawa's user avatar
  • 23
0 votes
0 answers
44 views

The file electron-v38.4.0-win32-x64.zip already exists in the Electron cache directory at: D:\sandbox\electron\Cache\170c37ecabce6b93655518bed5da6604d76afeb91dd19907c5ab5f7b83d3d891\electron-v38.4.0-...
Volodymyr Bezuglyy's user avatar
2 votes
1 answer
77 views

We have some Tests for our electron node.js UI. They work fine if run on our desktops (windows and linux, even on linux via SSH and local X-Server) But the moment they run in our Jenkins pipline they ...
nobs's user avatar
  • 750
0 votes
1 answer
100 views

I'm developing a project using Next.js 15.5.4 inside an Electron.js application, with the following stack: React.js Tailwind CSS SQLite On Windows 11, running npm run build (or next build) ...
Ignatius Chandra's user avatar
-1 votes
0 answers
65 views

i have built a desktop application using nuxt 4 and electron js, everyting is working as perfect in dev mode loadig css , js everything but when it comes to package and prod the application installs ...
Trojan Technologies Developmen's user avatar
0 votes
0 answers
44 views

I am building an electron app with preact + typescript with vite tool. below is my vite config import { resolve } from 'path' import obfuscatorPlugin from "vite-plugin-javascript-obfuscator";...
Nikunj Guna's user avatar
0 votes
0 answers
68 views

Totally as the title says: I have an electron app ( mainly simple code as a start up track ) and I have normal createWindow function and an event listener to if all the windows are closed, if so quit ...
Peace In Life's user avatar
0 votes
1 answer
60 views

I need this module to perform some logic with asar files. Project builds and works fine. VSCode correctly resolves node:original-fs. Only ESLint fails to resolve it: PS C:\Users\my-project> npm run ...
RareScrap's user avatar
  • 600
0 votes
0 answers
33 views

I'm using electron as browser to load remote pages, when I open a PDF the default PDF viewer is opened but the file download button doesn't work and doesn't throw any error: This is the package ...
Tobia's user avatar
  • 9,619
0 votes
0 answers
80 views

I have the below build script: "build": { "appId": "com.yourcompany.gamelauncher", "productName": "My Game", "directories": { ...
MinhSu - Justin's user avatar
0 votes
0 answers
40 views

I got the following error when tried to import { contextBridge, ipcRenderer } from "electron/renderer"; to Electron preload. ERROR in ./ElectronPreload.ts 2:0-50 Module not found: Error: Can'...
Takeshi Tokugawa YD's user avatar
1 vote
0 answers
65 views

When have I used the Electron for the first time, there were only Main Process and Render Process, but the inter-process communication was available. Recently I started to use the Electron again, and ...
Takeshi Tokugawa YD's user avatar
0 votes
0 answers
49 views

I have a self-hosted version of rocket.chat and I tried to slightly change it in both server and electron, and I faced a problem. The change I made is inside the notification module, and a function ...
Sajad's user avatar
  • 36
-1 votes
1 answer
82 views

I have a webapp that should work with standard browsers and with an electron client. I need to prevend that user left the page before saving his works on the web page. Then I added this code: window....
Tobia's user avatar
  • 9,619
2 votes
0 answers
45 views

I'm building a cross-platform application (web + desktop) where the React + Vite frontend is hosted on Vercel. While using mainWindow.loadURL('https://example-app.vercel.app') works, it has ...
Brijrajsinh parmar's user avatar
0 votes
0 answers
73 views

I am using Playwright to test an electron based Theia app, I had my test implemented as follows import { test, expect} from "@playwright/test"; import { theiaApp } from "../../../...
Merolla's user avatar
  • 315
1 vote
0 answers
64 views

I’m working on a Cordova-Electron project where I need to access the Windows native geolocation API (WinRT) instead of using Google’s geolocation provider. Environment details: Node.js: 18.20.x ...
Annonymous's user avatar
1 vote
0 answers
94 views

I got an Angular/Electron app. The app runs fine when I load a URL for the Electron window. But when I go to production, I want to load the files from the Angular build. So the app would also run ...
Dennis Bacher's user avatar
1 vote
0 answers
37 views

Environment Electron: 25.x (tested) electron-builder / electron-updater: tested with electron-builder 23.x / electron-updater (versions may vary) macOS: 13.x Ventura Relevant code (main process/...
Dhilip Kumar's user avatar
0 votes
0 answers
110 views

I'm packaging an Electron app (Grist Desktop) as a Flatpak, but I'm having trouble getting the app icon to show up and file associations to work properly. The icon is not displayed in the application ...
Wiktor Pyk-Półtorak's user avatar
0 votes
1 answer
52 views

I am working on a mac OS app that uses the Azure Speech Translation SDK in React + Typescript. The SDK's types are not altogether correct or at least seem to be a bit convoluted. Running the set up ...
serxio's user avatar
  • 37
2 votes
1 answer
111 views

I want to use async await mechanism for the checkForUpdates function of the autoUpdater in Electron. Currently, I am using autoUpdater.checkForUpdates() without await in one of my asynchronous ...
sam's user avatar
  • 21
0 votes
1 answer
195 views

I am developing an Electron application using React and Vite, incorporating the @heroui/react library (a UI component set) for buttons. The buttons display the click animation (ripple effect) ...
InfinityX's user avatar
1 vote
0 answers
154 views

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 ...
Frederic Jasmin's user avatar
0 votes
0 answers
36 views

Summary/Intent I'm writing tests for a VS Code extension that uses vscode.env.clipboard.writeText() to copy a generated string to the system clipboard. I want to assert that the clipboard contains the ...
null-point-exceptional's user avatar
1 vote
1 answer
74 views

Problem Description I'm experiencing inconsistent font rendering between different Electron versions on the same machine with the same font installed. The Meiryo font appears significantly bolder in ...
Trần Tuấn Hưng's user avatar
1 vote
0 answers
110 views

I’m building an Electron app using React and Dockview. Everything works fine until I add a custom leftHeader or rightHeader to my Dockview layout. If I close the panels one by one until there are none ...
Uday Baldha's user avatar
0 votes
0 answers
31 views

I am working with a web application that is also used in an Electron application. It calls "window.electron.selfInfo" to access certain information. In the Electron preload script, it used ...
Darren Chiang's user avatar
0 votes
1 answer
162 views

I am trying to embed python standalone builds to my electron app. I downloaded standalone from https://github.com/astral-sh/python-build-standalone Everything seems to work fine until pillow is ...
Art's user avatar
  • 3,171
0 votes
1 answer
58 views

My Electron application temporarily uses a WebContentsView, layered on top of part of the main window, during a login process. The user needs to interact with the web page in this view. Simplified ...
sam marshall's user avatar

1
2 3 4 5
307