Hey.
Does anyone know if it is possible to include multiple iojs apps within 1 electron app, e.g.
(on OSX)
UI app:
MyApp.app/Content/MacOS/Resources/app
Daemon app:
MyApp.app/Content/MacOS/Resources/daemon
where the UI app is a standard Electron app that presents the ui in Chromium (browser/renderer process and all that), but the Daemon app is a simple iojs app that I want to run in the background and whose lifecycle is independant from the UI app.
If this is possible, how would you go about running the Daemon app using the iojs that is already bundled in electron?
e.g. MyApp.app/Contents/MacOS/MyApp daemon
or does everything have to reside under /app in Resources if you want to get electron to run the app?