3.2.0 • Published 6 years ago

@angrykiller/run-applescript v3.2.0

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

run-applescript Build Status

Run AppleScript and get the result

Install

$ npm install run-applescript

Usage

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

(async () => {
	const result = await runApplescript('return "unicorn"');

	console.log(result);
	//=> 'unicorn'
})();

API

runAppleScript(script)

Returns a Promise<string> with the script result.

runAppleScript.sync(script)

Returns a string with the script result.

runAppleScript.noExec(script)

Returns a Promise<string> with the script result (executed without "-e" parameter in osascript).

runAppleScript.noExecSync(script)

Returns a string with the script result (executed without "-e" parameter in osascript).

Related

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

License

MIT © Sindre Sorhus