Skip to content
This repository has been archived by the owner on Jul 18, 2020. It is now read-only.

Latest commit

 

History

History
26 lines (18 loc) · 671 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 671 Bytes

💻 🚀 Term Launcher

Greenkeeper badge

Launch terminals and jupyter consoles from node.

Installation

npm install term-launcher

Example

const term = require('term-launcher');

term.launchTerminal('echo Hello world!');
term.launchTerminal('ls', '~/Desktop');
term.launchTerminal('ls', '~/Desktop', 'iTerm.app');

term.launchJupyter('<path-to-connection-file-of-running-kernel>');
term.launchJupyter('<path-to-connection-file>', 'Desktop', 'iTerm.app');

Documentation

API Documentation.