A simple, cross-platform NodeJS package which can be used to listen to and capture keyboard events.
Compatibility table:
Platform | Compatible? | Tested |
---|---|---|
Windows | True | Win10 |
Mac | True | Mac OS Mojave |
Linux | Not implemented | N/A |
This keyboard listener was originally made for the productivity application, LaunchMenu.
import {GlobalKeyboardListener} from "node-global-key-listener";
const v = new GlobalKeyboardListener();
//Log every key that's pressed.
v.addListener(function (e, down) {
console.log(
`${e.name} ${e.state == "DOWN" ? "DOWN" : "UP "} [${e.rawKey._nameRaw}]`
);
});
//Capture Windows + Space on Windows and Command + Space on Mac
v.addListener(function (e, down) {
if (
e.state == "DOWN" &&
e.name == "SPACE" &&
(down["LEFT META"] || down["RIGHT META"])
) {
//call your function
return true;
}
});
//Capture ALT + F
v.addListener(function (e, down) {
if (e.state == "DOWN" && e.name == "F" && (down["LEFT ALT"] || down["RIGHT ALT"])) {
//call your function
return true;
}
});
//Call one listener only once (demonstrating removeListener())
calledOnce = function (e) {
console.log("only called once");
v.removeListener(calledOnce);
};
v.addListener(calledOnce);
/*
To add logging of errors please use. This is hopefully not needed in most cases, but may still be useful in production.
new GlobalKeyboardListener({
windows: {
onError: (errorCode) => console.error("ERROR: " + errorCode),
onInfo: (info) => console.info("INFO: " + info)
},
mac: {
onError: (errorCode) => console.error("ERROR: " + errorCode),
}
})
*/
To install this npm package call:
npm install node-global-key-listener
NodeJS has various packages for listening to keyboard events raised in the operating system. We may not have created the best package for you, please use the below descriptions to aid you in making your decision:
- Native to electron apps
- No compiling issues with Node-gyp
- All execution occurs in-process
- On Windows: Cannot override windows specific shortcuts. E.G. Ctrl+Alt+Delete or Windows+Space etc.
- On Mac: Will not prevent other applications from listening for events
- Cannot easily be used to listen for arbitrary keys
- Requires electron in order to function.
- All execution occurs in-process
- On Windows: Allows capture of windows specific shortcuts. E.G. Ctrl+Alt+Delete or Windows+Space etc.
- On Mac: Prevents other applications from listening for captured events.
- Cannot easily be used to listen for arbitrary keys
- Requires compilation with node-gyp. Sometimes the package is released with binaries, however these binaries need to be compiled seperately for each version of node. Furthermore, when compile errors occur the code given is a black box which you will need to fix, which may be complex if you're not used to the languages they are written in.
- Easy to setup as an arbitrary key listener/logger.
- Does not require node-gyp. Our package comes with pre-compiled binaries which are compatible with your OS and not dependent on node version.
- On Windows: Allows capture of windows specific shortcuts. E.G. Ctrl+Alt+Delete or Windows+Space etc.
- On Mac: Prevents other applications from listening for captured events.
- Most execution occurs out-of-process. Our package executes and runs a seperate key server which NodeJS interfaces with over stdio. This means that this application might require permission to run depending on your anti-virus system.
- Some workarounds used may rarely lead to unexpected functionality, see windows specific implementation of windows key listeners
- If installed into an application on Mac explicit permission will be required from the user via Accessibility.
If modifying the typescript code you will have to run the following command in a terminal in the root directory of this package:
npm run watch
This will cause the application to recompile the typescript whenever the source code is changed. If you are making a change to an application for a single system, please consider adding these changes to both keyboard servers if possible. Generally we will work on both simultaneiously however we know this is not always possible.
To modify the Windows C++
or Mac Swift
source code please compile these applications before testing with:
This project is configured to use mingw, and thus this should be installed before compiling the source code.
To compile the source code of these applications use the below command line commands respective to the system you are working on.
npm run compile-win
npm run compile-mac
- If Including this package into an Electron application, the built application will require explicit permission from the user on Mac OS X systems.
- Given that a fallback may be required we may release an
electron-global-key-listener
package to accommodate this in the future. In our case for LaunchMenu, our fallback is implemented incore/keyHandler
.