1,456 questions
0
votes
1
answer
90
views
How to exclude squirrel.mac framework from getting included in electron app for dmg file
I am getting error for squirrel.mac while publishing dmg file to app store.
we are not using auto update for our app.
so any idea How to completely disable AutoUpdate in Mac/How to exclude squirrel....
1
vote
1
answer
123
views
Identrust X Google Cloud HSM X Electron Builder
Hi I want to publish an app on the Microsoft store and this requires an EV certificate. I found that Identrust is the cheapest option, but I wanted to double check that they support using a cloud ...
2
votes
0
answers
479
views
electron forge make --- operation not permitted
I'm developing a desktop application with react-vite + electron.
Everything was working fine, but at a certain point the "npm run make" command (which had worked correctly up to that point) ...
1
vote
0
answers
48
views
How to run 'sqlite3' after building an exe using electron-builder
I'm building my app using electron js. I eventually used the electron builder in order to package it into an executable. This worked, but upon running the exe, I got an error shown in the screenshot.
...
0
votes
1
answer
190
views
Electron: Install new version manually
I don't want to use electron-updater or other packages for updating my electron application so what are the solutions to update app manually?
I tried replacing built files of new version in c:/program ...
1
vote
0
answers
185
views
White screen when generating Electron.js executable with Nuxt 3
I am following the Nuxt 3 modules documentation to create a desktop executable file for a website with Electron.js. Although I can run the npm run dev command and view an Electron.js window, when ...
1
vote
1
answer
381
views
Electron updater keeps new updates at user level
I install my electron app (msi build for Windows) with the following script:
msiexec /i "https://URL_TO_MY_APP_Messenger.msi" MSIINSTALLPERUSER=""
and it was installed under C:\...
1
vote
0
answers
389
views
Issue with HTTPS Interception in Electron App Using http-mitm-proxy: HTTP Works, HTTPS Does not
I'm developing an Electron application that uses the http-mitm-proxy (https://github.com/joeferner/node-http-mitm-proxy) library for intercepting and handling web requests. My application is set up to ...
1
vote
0
answers
64
views
Electron built app package has empty style.css
I am using electron-react-boilerplate with tailwind and my config.renderer.prod.ts looks like this:
import path from 'path';
import webpack from 'webpack';
import HtmlWebpackPlugin from 'html-webpack-...
1
vote
0
answers
162
views
Customizing File Paths in Next.js
The default path I receive is "/_next/static/css/650b9dca11a5e4cf.css", but during build time, I prefer the path to start with "_next" instead of "/" in order to access ...
1
vote
1
answer
138
views
My electron js .dmg file is not containing all the meta data such as package.json
I am trying to run a script over terminal in my electron js project which works fine if i run the build on my local device but if i share that particular application which i dmg file it is not ...
1
vote
0
answers
75
views
how to ensure consistent file hashes for Portable Applications with electron-builder
How can i ensure that the file hash value is the same every time electron-builder build a portable application?
The premise is not to modify any code or resources, build it straight away twice ...
2
votes
2
answers
3k
views
Issue with Electron Application Build on Windows using electron-builder
Im trying to build my app but i getting errors
I am facing difficulties in trying to build my Electron application on Windows using electron-builder. The build process fails with an error related to ...
1
vote
1
answer
929
views
Electron-based app flagged as Potentially Unwanted Software by Windows Defender
We have been releasing our Electron-based app for Mac and Windows for the last 2 years, but recently we started having a problem when releasing new versions for Windows. From the recent the new ...
0
votes
1
answer
687
views
Electron Builder with React: Getting __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED
I'm using Electron Builder to package my React app, but I'm getting this error:
Uncaught TypeError: Cannot read properties of undefined (reading '__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED')
...
0
votes
0
answers
359
views
electron-builder: Node module not being found in packaged app
When I try to package my electron app, I keep getting:
The vectordb node module requires the @lancedb/vectordb-darwin-arm64, however I have both added in my package.json. I'm using React with Webpack ...
1
vote
1
answer
1k
views
Node-pty and ElectronJS
I am trying to use node-pty from within an ElectronJS app, but I'm struggling to get it to work.
I am using Electron React Boilerplate as the base for my project.
Repro of the issue:
git clone --depth ...
0
votes
1
answer
132
views
MSI Installer for an Electron application using Blazor Server App
As I am new to electron and blazor, I am not sure how to create an MSI installer for an electron application
I have created an Electron application from a basic Hello World Blazor server app using ....
0
votes
1
answer
980
views
Electron Builder : Please specify author 'email' in the application package.json
While Generating Build Via Electron builder I am facing Following Error.
⨯ Please specify author 'email' in the application package.json
I also tried to add email field into package.json file.
1
vote
3
answers
1k
views
electron-builder MSI installer asar file too large
I have an Angular app for which I need to create an MSI installer. I have successfully created an electron app (npm run electron), but when I try to create the installer I get this error:
error ...
0
votes
0
answers
116
views
Electron doesn't load files properly
My Angular app is running perfectly in a web server,
e.g. by calling ng serve or after running ng build and deploying to a web server.
When I use electron-builder the app is built and can be installed ...
2
votes
1
answer
1k
views
Can't sign code with electron-builder because of com.apple.FinderInfo and com.apple.fileprovider.fpfs#P
I'm working on signing an Electron app, but the codesign command fails due to the presence of com.apple.FinderInfo and com.apple.fileprovider.fpfs#P extended attributes on files within my app bundle. ...
1
vote
2
answers
5k
views
Electron not loading preload script when application is built
I am fairly new to Electron and I am having an issue of the preload script after I have built the application (electron-builder). I am upgrading the Electron version to 26.3 from a very old version. ...
0
votes
1
answer
206
views
Open a link in electron created a new browser window How to Apply set Browser window properties on that window?
I have one main Electron window which is loaded by loadURL. In that window we a different
a-tag which automatically created a new BrowserWindow with default setting. how can we change the ...
0
votes
1
answer
586
views
Question about electron-builder auto update and bitbucket pipeline
I'm currently trying to add auto update on a electron app with electron-builder auto update and bitbucket pipeline.
But I have some difficulty to understand what eact part (electron-builder and ...