This project provides a Node.js native module for required automations in Witsy. The goal is to avoid spawning a third-party process such as applescript
, cscript
or powershell
to avoid focus management issues between applications.
To install the module, clone the repository and run the following commands:
npm install
Before using the module, you need to build it using node-gyp
. Make sure you have node-gyp
installed globally:
npm install -g node-gyp
Then, navigate to the project directory and run:
node-gyp rebuild
After building the module, you can use it in your Node.js application. Here’s a simple example:
const autolib = require('autolib');
autolib.sendControlKey('C');
Sends a control key combination. The key
parameter should be a string representing the key you want to send (e.g., 'C', 'V').
To run the tests, you can use the following command:
npm test
Make sure to have a testing framework like Mocha or Jest set up in your project.