terminal-tab

0.0.8 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i terminal-tab

Weekly Downloads

4

Version

0.0.8

License

MIT

Unpacked Size

7.65 kB

Total Files

11

Last publish

Collaborators

  • miguelmota