AngryKiller / run-applescript

Run AppleScript and get the result

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Run AppleScript and get the result

License:MIT License


Languages

Language:JavaScript 100.0%