electron-exe获取命令行参数 发表于 2017-09-25 | 最近做项目的时候,有个需求是通过命令行启动程序,并且获取里面的参数 例如: 1~/myapp.exe --args name=qiu 使用主进程中 process 模块获取失败 在渲染进程使用remote模块下process获取成功 12const remote = require('electron').remotealert(remote.process.argv)