Provides easy access to atom/electron from Julia
@require "github.com/jkroso/Electron.jl" => Electron
See Rutherford.jl for example usage
Returns the VersionNumber
of electons latest release
Installs a given version of Electron and returns the path to its executable
import Electron
electron = Electron.install(Electron.latest())
stdin,process = open(`$electron path/to/your/app`, "w")
Boots up an Electron app which can have messages written to its stdin
in order to open windows
const app = App("Electron")