electron调起本地应用

        **//调用子进程
        const exec = require("child_process").exec;
        exec("你的应用绝对路径", (error, stdout, stderr) => {
          console.log(JSON.stringify(error, stdout, stderr));
        });**