Skip to main content

All Questions

0 votes
0 answers
34 views

Not able to fetch data from sqlite using ipcRenderer

I've started electron project using ionic. But stuck in one point where I need to fetch the data from the sqlite database. I've getting data from API and saving it to the database.sqlite is working ...
Aman Sharma's user avatar
1 vote
0 answers
296 views

IPC communication between electron 19 and Angular 14

I have to use few electron power events and usb-detection in our app and also communicate these events to the angular side. Earlier with electron version 8, we used the ngx-electron in the angular ...
MJ2410's user avatar
  • 518
1 vote
1 answer
656 views

Electron FFmpeg progress handling

I have an Electron app (with Angular). I am new to Electron and all this inter-process event handling. My problem is that I have this ipcMain handler(main process) (that I 'Invoke' from an Angular ...
Ano's user avatar
  • 13
0 votes
1 answer
351 views

Electron - throttle flow of messages from main to render process

I am currently having some issues receiving an constant stream of active windows from my main process to my renderer process (in Angular). I know receiving second-by-second updates will break my app ...
methuselah's user avatar
  • 13.2k
2 votes
1 answer
2k views

Angular 11 Electron IPC communication 'send' of undefined

I did my first try and wanted to use the electron apis from an angular renderer process. I followed the instructions in Instruction creating Angular -Electron application so in my main.js file I added:...
nodefastic's user avatar
2 votes
1 answer
384 views

Electron-Angular open client-side dialog on ipc event

I have a back-end notification that pops up a client-side angular-material dialog component. Sometimes, but not always, the dialog does not completely instantiate. The constructor of the component is ...
Nate's user avatar
  • 2,205
0 votes
2 answers
9k views

How to open new window in electron using window.open in renderer process?

I have an angular application which is wrapped as electron app. Now when, in the renderer process I call Window.open for an internal route, I get a message saying Not allowed to load a local resource ...
The mentalist Coder's user avatar
1 vote
1 answer
482 views

Electron-Angular: Running Karma errors because of undefined ipcRenderer inside angular component

I have an Electron application that uses Angular (8) as a front end framework. I am trying to implement unit testing but keep getting the following error when i start the test: Chrome 77.0.3865 (...
Landvis's user avatar
  • 280
2 votes
2 answers
2k views

Is there a function to send electron 6 data to an angular 8 component?

I need to send information to an angular component in order to do an "automatic" login, I can send component data to the electron process using the IPCRederer (on component) and IPCMain (on 'electron' ...
Bruno Furukawa's user avatar
3 votes
2 answers
14k views

How to unregister from ipcRenderer.on event listener?

In my host application I have a button, that when clicked, sends data over to my angular application with data. Like so: <button (click)="onClick()">Send Some Data</button> component: ...
Kode_12's user avatar
  • 4,698
1 vote
2 answers
741 views

How is the ipcRenderer argument JSON object losing data when passed from an Angular 7 service?

I am having a strange issue with an Angular 7.1.1 and Electron 4.1.4 project. Data Flow: Angular Component "Report Builder" collects report configuration options from a FormGroup and FormControl ...
flaglerkid's user avatar