So, I am writing an application with the node/express + jade combo.
I have client.js
, which is loaded on the client. In that file I have code that calls
This Worked For Me
Note!
use require(['moudle-name'])
in your-script.js
not require('moudle-name')
use const {ipcRenderer} = require(['electron'])
not const {ipcRenderer} = require('electron')