electron-multi-monitor
electron-multi-monitor copied to clipboard
How to build an application for window?
Hello, can you help me build the app for window?
The project needs to be updated. I'll try to make an update when I have some spare time.
I just recently gave this project example a try.
After npm install I needed to also cd into node_modules/electron and then run node install.js otherwise Electron would not work for some reason (I don't remember the error I had before this).
Then I had to change the "example" script in package.json to this to get it running on a recent version of Node without errors:
"example": "npm run build && npm run build-example && NODE_OPTIONS=--openssl-legacy-provider npm run build-example-app && electron example/dist/Main.js",
Basically I had to add the NODE_OPTIONS=--openssl-legacy-provider in front of npm run build-example-app.
Probably something needs to be updated to not require this.