Is it possible to call a native process in Electron?
For example, if I want to call git
or something like that is it possible?
Example:
var process = new Process();
process.executable = File.ApplicationDirectory() + "/utilities/my_process_not_node_js";
process.arguments = "-html=5 -include-css=true -mobile-support=true";
process.addEventListener("standardInput", handleInput);
process.run();