-
Notifications
You must be signed in to change notification settings - Fork 86
Support @electron/remote instead of the old require('electron').remote #70
Comments
Same Problem here. |
The same issue in my project. After update to Electron 14.0.1 the following error occurs: |
@CMiksche What version(s) does it work on? |
In my project it is electron version 13.1.6 |
I have a old project with |
Hello, can someone please check this? |
This project has not been updated for two years. Maybe the package owner is not interested in further development? |
Anyone has any alternative libraries? Or any way to use the IPC with angular, since I want to update electron to the latest version. |
I'm in the same situation. @CMiksche do you see any chance to prepare a PR in the next few days/weeks? I looked at the scource code. This is a small project with a one class and one service class, seems to not be a big challenge. Hopefully the @ThorstenHans would agree to prepare a new release. |
Not really. We ditched this package and found another solution for our use case - so from my part it's not necessary anymore. |
Can you please provide me with the solution how can we use electron in our Angular app? I have tried examples from the internet but non of them seems to be working. |
@ThorstenHans do you intend to fix the issue and maintain your package in the future or is this project dead? |
Instead of using |
This is a much simpler solution than waiting on Only "gotcha" is that in your main.js you need to add this line:
Otherwise attempting to use |
Hello all 👋, As a user of this library, I have just started a new initiative for going this amazing effort from @ThorstenHans further which is called ngx-electronyzer. This project is heavily inspired by the work that Thorsten has put into ngx-electron. The only difference is that it does not expose the remote module, yet. I plan to add more features shortly so I would appreciate any feedback that you may have. @ThorstenHans I have added an appropriate section in the README file to refer back to you and ngx-electron. Thanks very much for the inspiration with this amazing project 🙏 |
The current implementation works only with old versions of Electron because
require('electron').remote
is now outdated and we have an@electron/remote
Package instead of it.So to support the new implementation, the dependencies would need to be updated, @electron/remote added and the whole Code would need a refactoring because many things are now outdated....
I already created a fork and started updating the dependencies: https://github.com/CMiksche/ngx-electron
The text was updated successfully, but these errors were encountered: