I was using electron-packager to generate .app file from my Angular-Electron app and then electron-installer-dmg to generate installable .dmg file from .app. But I have to add Notarizing to my app which I could not figure out how to do with…
I have an electron app and use electron-packager for creating an executable that is used for a couple of days when the app is used. In my package.json it looks like this:
{
"name": "Software",
"version": "0.1.0",
"main":…
I am trying to create an electron app using .net-core. It is working good in all steps and there are no errors when I test and debug the apps at all.
But unfortunately, when I am packaging the app using electron-packager, I get this error when…
I built a new electron-Vue application and installed the pug and pug-plain-loader packages. When I run the application, I am getting an error in the console:
"Errors compiling template: Component template requires a root element, rather than just…
I'm creating an electron app, which upon start spawns a local Django server child process (to serve as backend processing). In my development environment, the electron app runs properly when I run
npm start
Although, when trying to deploy my…
I need to generate two apps from the same codebase (e.g. "pro" and "lite" versions). There are a lot of questions here about this but none I found involve node or electron.
I have only used env in development in very simple ways and after searching…
I am getting Below error while running the electron command
The application window is open for a fraction of seconds and closing it.
I don't know what happening here
npm ERR! errno 1
npm ERR! bullet-bot@1.14.4 electron: `electron .`
npm ERR! Exit…
I'm trying to make an installation setup for my electron app. I've tried electron builder and electron packager, it worked but not what I hoped for. I wanted to have a installation set up similar to vscode (which I've heard was made using…
I am trying to launch my ElectronJS app on Linux but impossible to get there.
This is my build process :
On Windows, I building the app for Linux with electron-packager, for amd64 arch.
I copy the folder generated on my Ubuntu machine and I create…
I have developed an app in angular 6. I am trying to make .exe build using electron. When I am making an electron build in the dev environment which is working fine but now I want to release a package for windows I have installed electron packager…
I successfully packaged and ran an Electron project (desktop chat app) using the Electron Packager with no errors. However, I'm just getting a blank window on launch without the username form that was coded into the app. I'm not sure where to turn…
i am working on an Code Editor as a web app thanks to Electron.
My problem is short:
When I build my app with electron-packager all my web folders and files goes to the file called "app.asar". But i want to have an exception for my folder called…
I'm trying to sign the stock electron app. Below is the script that I'm using. The issue is that gatekeeper complains that the app ("Electron") can’t be opened because the identity of the developer cannot be confirmed. Why is that?
#!/bin/bash
set…
I'm trying to get my Electron Mac app to start at login, but I can't get it to work.
I'm implementing the start at login functionality from Electron's API (https://electronjs.org/docs/all#appsetloginitemsettingssettings-macos-windows) and that part…