@marionebl/run-applescript
Version:
Run AppleScript and get the result
42 lines (23 loc) • 746 B
Markdown
# run-applescript [](https://travis-ci.org/sindresorhus/run-applescript)
> Run AppleScript and get the result
## Install
```
$ npm install --save run-applescript
```
## Usage
```js
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](https://github.com/sindresorhus/run-jxa) - Run JXA code and get the result
## License
MIT © [Sindre Sorhus](https://sindresorhus.com)