1 Star 0 Fork 212

张也/electron-hiprint

forked from CcSimple/electron-hiprint 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
start.js 564 Bytes
一键复制 编辑 原始数据 按行查看 历史
xavier9896 提交于 2024-10-24 20:05 . feat: 添加 render 窗口
const { spawn } = require('child_process');
const os = require('os');
const isWindows = os.platform() === 'win32';
// Windows下使用chcp 65001设置编码,其他平台直接运行electron
const command = isWindows ? 'chcp' : 'electron';
const args = isWindows ? ['65001', '&&', 'electron', '.'] : ['.'];
const electronProcess = spawn(command, args, {
stdio: 'inherit', // 继承父进程的stdio配置
shell: true // 使用shell来解析命令
});
electronProcess.on('close', (code) => {
console.log(`Electron process exited with code ${code}`);
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/venner/electron-hiprint.git
[email protected]:venner/electron-hiprint.git
venner
electron-hiprint
electron-hiprint
master

搜索帮助