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

nteract/term-launcher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

💻 🚀 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.