Skip to main content

All Questions

Tagged with
0 votes
0 answers
25 views

Flask Electron HTML

I am currently working on a project using Flask as backend and a HTML file as frontend. Trying to use electron for turning it into an exe, I faced some difficulties: I need to run my Flask with the ...
javamouse's user avatar
-1 votes
1 answer
71 views

How to create an app on ElectronJS which after button click it logs out "Hello world!" in console?

Help me please! Everything you can imagine and everything out of human imagination. Here is html: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <...
captainowl's user avatar
1 vote
0 answers
26 views

How can I get open/save dialog to work on Electron v19?

I am quite new to Electron and am trying to make a note app where you can save and open note files. I am trying to set up a page where you can open a file. I have been following a few tutorials, but ...
Suleman Hussain's user avatar
1 vote
1 answer
44 views

Electron app can't display image from oepnweatheramp api link

This is my code that is used to generate icon code from OpenWeatherMap API fetch( "https://api.openweathermap.org/data/2.5/weather?q=" + name + "&appid=" + ...
Mapida's user avatar
  • 11
0 votes
0 answers
481 views

Display content of large text file in textarea using Nodejs

Hellow everyone, Since few times I try to display the content of a pretty large text file (~500 Mb to 1 Gb) in a HTML textarea, to be able in the futur to filter the content and search more fast the ...
Akiraj's user avatar
  • 1
1 vote
2 answers
5k views

JQuery not working with electron framework

I'm trying to using jquery with electron framework using electron fiddle. However jquery seems not working properly and animation are not executed. The example is the following: https://www.w3schools....
Virgula's user avatar
  • 318
0 votes
0 answers
216 views

Is there a reason my javascript file is not recognized?

index.js: const { app, BrowserWindow } = require('electron'); const path = require('path'); // Handle creating/removing shortcuts on Windows when installing/uninstalling. if (require('electron-...
JipBit's user avatar
  • 31
0 votes
1 answer
695 views

copy selected file from an input on electron app form

I have this form <form> <input type="file" name="idp" id="idp" onchange="uploadFiles();"/> </form> When the user chooses a picture I need to copy it to a specified folder and ...
amrrragab's user avatar
12 votes
4 answers
7k views

Transparent Windows on Linux (Electron)

Using the transparent argument and setting it to true when creating a new BrowserWindow in Electron usually gives the window a transparent background... But on Linux that isn't the case for my ...
undefinedChar's user avatar
3 votes
1 answer
338 views

Electron: Disable Paste on Windows

I am using Electron and I'm trying to disable the ability for users to paste into editable content. I'm also keeping paste and match style enabled. This works great on Mac, but for some reason on ...
Jason Louro's user avatar
4 votes
0 answers
372 views

Use CSS framework through npm in Electron application

I have installed bulma through npm in my electron project as a dependency. However, I am forced to do something like this: <link rel="stylesheet" type="text/css" href="node_modules/bulma/css/bulma....
Nick's user avatar
  • 2,930
0 votes
1 answer
575 views

Facial Recognition using election framework [closed]

Is it possible to code for facial recognition program in electron framework. I understand code will be in .html and .js, I looked for all the tutorials and have been doing my research on this topic ...
AjaiVeer Singh Sandhu's user avatar
12 votes
2 answers
11k views

Can you use absolute paths in Electron?

Simple question here that I can't seem to find a straight answer for. Is there any way to use absolute paths for dependencies (e.g. <script src="/my-script.js"></script>) with electron ...
Colton Voege's user avatar