DEV Community

Discussion on: Electron Apps Made Easy with Create React App and Electron Forge

Collapse
 
kurotsuba profile image
Kurotsuba

Thank you! This article helps me a lot!

While importing electron-forge with

npx @electron-forge/cli import

I got an error:

could not determine executable to run

I'not sure if this is related to npm version, my version is 8.3.1

finally I solve this with the command below

npm  i -D @electron-forge/cli
npx electron-forge import
Enter fullscreen mode Exit fullscreen mode

This solution comes from electronforge.io/import-existing-p...