terminal-tab

Open terminal tab programatically

Usage no npm install needed!

<script type="module">
  import terminalTab from 'https://cdn.skypack.dev/terminal-tab';
</script>

README

Terminal Tab

Open a terminal tab programatically.

Install

npm install terminal-tab -g

Getting started

const terminalTab = require('terminal-tab')

terminalTab.open(`echo "my command"; sleep 2 && exit`)

Options

Child process command options:

const options = {
  cwd: null,
  env: null,
  encoding: 'utf8'
}

terminalTab.open(`echo "my command"`, options)

Event callbacks

terminalTab.open(`echo "my command"`, options, {
  onStdout: (stdout) => {},
  onStderr: (stderr) => {},
  onError: (error) => {},
  onExit: (code, signal) => {
    console.log('exit:', code, signal)
    process.exit(0)
  }
})

Alternatively:

terminalTab.open(`echo "my command"`, options, (stdout) => {})

Without options:

terminalTab.open(`echo "my command"`, (stdout) => {})

CLI

terminal_tab 'echo hello'

Piping

echo 'echo hello' | terminal_tab

License

MIT