I am currently having an issue with using @electron/remote module with the MacOS 15 which has not been update since January 2024.
I should really switch to using contextBridge or ipcRenderer.invoke. But if I do which I have tried it presents a problem for the build. You need to set parameters on the BrowserWindow to the following {nodeIntegration: true,contextIsolation : true}.
When you run the app you get an error after the isElectron flag is set to true and the next line throws a undefined reference to ‘require’ function where it loads in the jquery module.
I hope that makes sense, Electron for security obvisously would like developers to use the ipcRenderer or contextBridge to access os modules which is more secure and safer.
Well on all previous versions of MacOS that code works within the project I don’t use the other modules listed, however they are in the electronmain.js
It’s a difficult one to resolve as the anything that’s changed is the OS version.
Thank you for your help I will continue to investigate.