Electron勉強がてらのメモです。
内容薄いです。
Electronで外部コマンド実行する場合は、nodeのやり方でOK。
const exec = require('child_process').exec;
var command = 'ls';
exec(command, (error, stdout, stderr) => {
// なんか処理
});
Go to list of users who liked
More than 5 years have passed since last update.
Electron勉強がてらのメモです。
内容薄いです。
Electronで外部コマンド実行する場合は、nodeのやり方でOK。
const exec = require('child_process').exec;
var command = 'ls';
exec(command, (error, stdout, stderr) => {
// なんか処理
});
Register as a new user and use Qiita more conveniently
Go to list of users who liked