dicom-microscopy-viewer-changed
Version:
Interactive web-based viewer for DICOM Microscopy Images
35 lines (20 loc) • 551 B
Markdown
> Run AppleScript and get the result
```
$ npm install run-applescript
```
```js
import {runAppleScriptAsync} from 'run-applescript';
const result = await runAppleScriptAsync('return "unicorn"');
console.log(result);
//=> 'unicorn'
```
Returns a `Promise<string>` with the script result.
Returns a `string` with the script result.
- [run-jxa](https://github.com/sindresorhus/run-jxa) - Run JXA code and get the result