Package detail

@marionebl/run-applescript

sindresorhus2.4kMIT3.0.0

Run AppleScript and get the result

macos, osx, mac, applescript

readme

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