node-jxa
node-jxa copied to clipboard
Use your favorite node.js modules (and JS editor) for your Javascript OSX automation scripts
Is that possible to integrate node-jxa to node, instead of node to node-jxa? Then you can use it in Electron?
I am building an electron app and I am getting the following error in my console when I call `var nodejxa = require('node-jxa')` from my JavaScript: ``` /Users/Me/Documents/git/electronHelloWorld/node_modules/node-jxa/node-jxa.js:15 Error: Can't...
Hi. If you install the current (2.1.2) release from NPM, you'll get an error when Node-jxa runs `osacompile`: `osacompile: couldn't write to file /Users/john/code/node-jxa/deleteme.scpt: No such file or directory` The...
Hi John, It seems that node-jxa uses browserify to generate a single script file each time it is invoked. For scripts that are called often, or that are substantial in...
I get an error in VSC using [Code Runner](https://marketplace.visualstudio.com/items?itemName=formulahendry.code-runner#overview) with this script: ```javascript #!/usr/bin/env osascript -l JavaScript var app = Application.currentApplication(); app.includeStandardAdditions = true; console.log("Test Get app name"); var appProp...
First, **let me express my tremendous gratitude to John** for providing this excellent library/resource. I look forward to using it. Now to my question: ### How Do I use Visual...