This site does not allow itself to be embedded. You can still read it on the original site — the toolbar below keeps your place in the directory.
Open a Terminal tab programatically in Node.js. index.js : var exec = require( 'child_process' ).exec; var through = require( 'through' ); var os = require( 'os' ); var child; var args = process.argv; function openTab(cmd, cb) { if (os.platform() !== 'darwin' ) { throw new Error ( 'No support for this operating system but feel free to fork the repo and add it :)' ); } var open = [ 'osascript -e…
Comments
Nothing yet. Say the first thing.
Sign in to join the conversation.