Run AppleScript and get the result
npm install @marionebl/run-applescript> Run AppleScript and get the result
```
$ npm install --save run-applescript
`js
const runApplescript = require('run-applescript');
runApplescript('return "unicorn"').then(result => {
console.log(result);
//=> 'unicorn'
});
`
Returns a Promise of the script results
Returns the script results as string`
- run-jxa - Run JXA code and get the result
MIT © Sindre Sorhus