Use AppleScript from node.js
Execute AppleScript from node.js and process the results.
$ npm install node-osascript
Execute AppleScript and use the results of the javascript in node.
The result is transformed into a javascript object using PEG.js
So AppleScript lists are transformed into an Array
, Records into a plain object
and
Dates to the Date
type. Numbers
, Booleans
and Strings
are converted, and null
converts to null
, and missing value
to undefined
.
var osascript = require('node-osascript');
osascript.execute('display dialog "What should I do?" buttons {"Go home", "Work", "Nothing"}\nset DlogResult to result\n return result', function(err, result, raw){
if (err) return console.error(err)
console.log(result, raw)
});
You can inject a javascript object into the script to have acces to these variables.
var osascript = require('node-osascript');
osascript.execute('display dialog message', { message : "Hello from Node.JS" },function(err, result, raw){
if (err) return console.error(err)
console.log(result, raw)
});
Execute the script
, if specified injecting the variables
into the AppleScript.
osascript.execute('script', { varName : 'value'}, function(err, result, raw){
if (err) return console.error(err)
console.log(result, raw)
});
Execute file in path
, if specified injecting the variables
into the AppleScript.
osascript.executeFile('path/to/script.scpt', { varName : 'value'}, function(err, result, raw){
if (err) return console.error(err)
console.log(result, raw)
});
To run platform independent tests use:
npm test
If you are on macOS you can run all tests using:
npm testall
MIT
- Remove grunt
- Upgrade to
[email protected]
- lint using
xo
- Fix for breaking change in node 6 (See #7 Thanks to rosszurowski)
- Update dependencies
- When date cannot be parsed by Javascript, return original string value (See #5)
- Added support for multiline strings and for unquoted strings in osascript output (See #5)
- Unrecognized result is know always treated as a raw string. (Fix #3)
- Fix a bug where empty results where considert an error (Fix #2)
- Stable release
- Fix package.json
- Inital release