Electron 调用系统工具记事本、计算器等

const child = require('child_process').exec;
child('notepad', function(err, data) {});//打开记事本
child('calc', function(err, data) {});//打开计算器
原文地址:https://www.cnblogs.com/yshyee/p/6857554.html