child_process.fork not starting an express server inside of packaged electron app
问题 I have an electron app where I need not only to run the interface to the user but also start an express server that will serve files for people connected through the network. I have everything working if I start both electron and the express server normally, but I'm pretty confident that I will need the server running in a different thread to avoid slugish interface and even problems with the server. For that matter I tried to run my express server using the child_process.fork and it worked