iohook
iohook copied to clipboard
Node.js global keyboard and mouse listener.
## Description This change empower the prebulit installation support mirror registry. ## Motivation and Context Sometimes, _github.com_ is unstable and hard to reach. So it might be great to download...
OS Version: macOS 11.6 Node Version: v16.9.1 Electron Version: v14.0.0 iohook Version: v0.9.3 Error: npm install iohook --save npm WARN deprecated [email protected]: this library is no longer supported npm WARN...
## Expected Behavior The `mousemove` and `mousedown` and `keydown` events should be captured using iohook on Chrome (93.0.4577.82). ## Current Behavior The `mousemove` and `mousedown` and `keydown` events CANNOT be...
```import ioHook from 'iohook'; ioHook.on('keydown', (event) => { console.log(event); }); ioHook.start(true); ``` ``` node index.js hook_run [1121]: Accessibility API is enabled. hook_run [1172]: CGEventTapCreate Successful. hook_run [1178]: CFMachPortCreateRunLoopSource successful. hook_run...
## Expected Behavior continuously logging all mouse movement and key presses ## Current Behavior - starts logging mouse movement and clicks - somewhat of a crash after one key press...
## Expected Behavior Press volume keys without quit. ## Current Behavior After press volume keys, the entire app would quit immediately. Just like command + Q. ## Possible Solution N/A...
## Expected Behavior Keydown event is triggered by all type of key down ## Current Behavior Only detect modifier key (cmd, ctrl, alt...). Alphabet, number keys are not detected. ##...
Hello, I was trying to build iohook on my local computer for electron 13.1.2 by running `node build.js --runtime electron --abi 89 --version 13.1.2 --no-upload ` and node-gyp has finished...
I try to install a clean electron app with node and print keyup event in console using iohook. ## Expected Behavior npm start works fine and every keyup prints event...
I'm getting an error when attempting to include iohook in my application. I'm using Electron + Create React App. It's an existing application that I'm trying to add a feature...