How to open a command line window in Node.js?

2019-02-18 14:28发布

How to open a new command line window and execute a bash command which runs in a separate independent process?

I tried

var child_process = require('child_process');
child_process.execSync("cmd.exe /K node my-new-script.js parm1 parm2);

but it opens no new window and I need an independent process (if possible). The background is I am experimenting with electron and wrote some node command line scripts. Unfortunately within electron environment spawning processes results often in weird behavior and console log output is more than ugly.

By the way I would need something equivalent to OS X and Linux.

1条回答
三岁会撩人
2楼-- · 2019-02-18 14:53

For Windows, you'll need to use the start command:

start cmd.exe /K node my-new-script.js parm1 parm2

For OS X, you can use:

osascript -e 'tell application "Terminal" to activate' -e 'tell application "System Events" to tell process "Terminal" to keystroke "t" using command down'

For other *nix distros, you'll need to look those up as each one is slightly different.

查看更多
登录 后发表回答