I’m creating an Electron / Vue application, and I cannot get the Vue Devtools to load in the Electron app window. This is my first time using Electron with Vue, and I’m not sure if there’s a …
Tag: electron
How to compile Python + Electron JS into desktop app (exe)
I created a desktop application using python as the backend and Electron JS integrated with Node JS as the front end. The image below is the file tree for my project. I was able to link up both the …
Why is electron’s showMessageBoxSync duplicating itself when cancel is clicked?
So the issue is: I open an electron messageBox of type ‘info’ once a button is clicked. It has ‘OK’ and ‘Cancel’ options. If I click ‘OK’, no problem. But when I click ‘Cancel’, then click my button …
Electron Problem runing manage.py runserver
I’m developing a web app, but just yesterday when i try to run manage.py wiht runserver appeared to me this error “(electron) Sending uncompressed crash reports is deprecated and will be removed …
CSS variable won’t get set | Electron
I’m currently having an issue with CSS variables not being set, I’m using electron and im trying to set it like this: for (let Button of ThemeButtons){ Button.addEventListener(“click”, …
Electron, contextIsolation and contextBridge
I recently had to revamp an old Electron app. I found out that it had contextIsolation set to false, so I went ahead and set it to true (and btw set nodeIntegration to false). As expected, it broke …
Take desktop screenshot with Electron
I am using Electron to create a Windows application that creates a fullscreen transparent overlay window. The purpose of this overlay is to: take a screenshot of the entire screen (not the overlay …
My app doesn’t close on button, electron.js
I have this electron.js app and I would like the application to close when I click on the text with class closer. Here is my code: HTML
Electron, Javascript: How to select an array within an array returned by the database
I want to foreach an array to show on the screen. This array is the data from a database table. The code to get this data: const { getConnection } = require(‘./database’); async function getUsers() { …
How to overflow auto focus last element
I develop Todo App. İf add to new element, scrollbars not focusing bottom of the page. How can i solve this problem ?