3.0.0 • Published 6 years ago

@marionebl/run-applescript v3.0.0

Weekly downloads
679
License
MIT
Repository
github
Last release
6 years ago

run-applescript Build Status

Run AppleScript and get the result

Install

$ npm install --save run-applescript

Usage

const runApplescript = require('run-applescript');

runApplescript('return "unicorn"').then(result => {
	console.log(result);
	//=> 'unicorn'
});

API

runAppleScript(script)

Returns a Promise<string> of the script results

runAppleScript.sync(script)

Returns the script results as string

Related

  • run-jxa - Run JXA code and get the result

License

MIT © Sindre Sorhus