electron Questions
7
In my electron app I have installed sqlite3 via npm
npm install sqlite3
But once i try to interact with the database it cant find the database, here is the log:
Uncaught Error: Cannot find mo...
3
I have an Electron app where I want to introduce parallel release channels: stable, next (for early adopters) and dev (for testing the latest build).
These will have a branch each, with new featur...
Dyan asked 24/11, 2016 at 10:26
4
So the issue is pretty simple:
clicking on circle and moving the line
[
Desired output
[
Now I'm trying to execute the exact thing with Cypress with the following code (will show all veriations...
Tee asked 10/11, 2021 at 10:40
5
Solved
Tried to build an electron based app by running npm run make in terminal, everything went fine except when it had to go thru Making distributables. Out folder has been created but app is not bundle...
Canaday asked 16/11, 2022 at 7:35
2
Electron app was initialized using electron-forge webpack template and everything works perfectly for macOs.
While running the dev version using electron-forge start the app loads perfectly on wind...
Alphonsa asked 23/2, 2020 at 14:39
1
A node/electron app gets deployed on the end user's machine. It tries to make an HTTPS request to a server. Depending on the user's network setup, this may work fine, or Node may throw the error "U...
Parentage asked 21/3, 2019 at 10:21
5
After running electron-builder for Windows / NSIS during a build process, our dev-ops team set a build script that runs to code sign the exe before deployment. After it gets to the server, electron...
Clothe asked 25/9, 2017 at 14:14
2
it's possible to use custom window level in Electron Framework, for make window always on top, even other apps is in fullscreen ?
For native MacOS apps i found this: https://mcmap.net/q/386167/-ke...
5
Solved
I'm developing a little app in Electron from which I can upload an image to Instagram and I'm stuck at one of the first steps :/
I want to select an image from the filesystem and display it in my ...
Bithia asked 10/6, 2018 at 8:6
5
I thought I had recently seen a developer open the dev tools from inside the Microsoft Teams desktop client (for Windows), but I can't easily replicate that.
Shortcuts like
Strg+Shift+I, Strg+Alt...
Philina asked 4/6, 2018 at 10:52
6
Solved
What is the easy way to add react dev tool to electron window? I try add the extension hash
BrowserWindow.addDevToolsExtension('path/to/extension/ade2343nd23k234bdb').15.01
But when the extensio...
Tube asked 20/6, 2016 at 16:54
4
Solved
Question
Is it possible to make a BrowserWindow, in electron, transparent with blur? In that it blurs all background content, including apps and the wallpaper.
And if possible, how would I accom...
Bearish asked 21/4, 2019 at 18:29
5
Solved
Are there any tools to live reload electron app when code is changed similar to browser-sync for web?
Whenever we change code for electron app, I am terminating existing running process and relaun...
Renitarenitent asked 31/8, 2016 at 13:0
3
Solved
I'm building an Electron application starting from the electron-webpack boilerplate.
I found this node module @ffmpeg-installer/ffmpeg which installs a compatible precompiled binary into the /node...
Bartholomeus asked 16/12, 2017 at 18:11
7
Solved
Is there a good solution on how to include third party pre compiled binaries like imagemagick into an electron app? there are node.js modules but they are all wrappers or native binding to the syst...
Narvaez asked 15/10, 2015 at 15:27
7
Solved
I'm working on a project with Typescript, React and Redux (all running in Electron), and I've run into a problem when I'm including one class based component in another and trying to pass parameter...
Nardi asked 7/3, 2017 at 20:32
2
I have created new angular project with electron.I do need to set up the electron.
I have got below errors.
ERROR in ./node_modules/electron/index.js
Module not found: Error: Can't resolve 'fs' ...
Bukovina asked 21/4, 2019 at 3:58
2
Solved
I'm learning Electron and everything I'm seeing is using the file:// protocol to load pages, and so far this is working fine. I also see some references to using Express within Electron.
My questi...
3
Solved
I am running an electron app, where in its renderer process I use HTML5 localStorage.
I'm interested to know where in my file-system is this localStorage actually stored (I believe it is in SQLite...
Depute asked 11/5, 2017 at 10:33
3
I'm using codemirror latest (v5.49.0). for my electron text editor app, sometimes line numbers are rendered overlapped with the text. cannot reproduce the bug because it doesn't happen always. easi...
Shortcake asked 20/11, 2019 at 10:11
3
Solved
I am using a Electron Vue App with Axios for my HTTP calls to my Laravel Server. Everything was perfect in Dev mode of Electron. But as soon as I build my Electron App into a install and put it on ...
Icehouse asked 3/1, 2019 at 8:1
3
Solved
It's easy to make a hot reload for webpage in electron BrowserWindow, But what about the main process? every time I change some event handler code in the main process, I need to restart electron to...
Untie asked 23/1, 2019 at 9:6
3
Solved
I have an electron window with these properties:
mainWindow = new BrowserWindow({
width: 800,
height: 600,
title: "Aqua",
frame: false,
transparent: true,
show: false,
fullscreenable: false...
Lazes asked 30/5, 2018 at 9:8
1
I have created an electron app and built it using electron-builder On app uninstall I need to delete the data that localStorage, kind of access tokens, etc.
In windows there is nsis - deleteAppDat...
Cadge asked 5/9, 2019 at 17:2
0
In my demoApp I want to start node server/server.js automatically when electron app is launched. I have written below code which works fine when I run npm run electron:start on my local system but ...
© 2022 - 2024 — McMap. All rights reserved.