Skip to content
This repository has been archived by the owner on Jul 19, 2024. It is now read-only.

LaunchMenu/node-global-key-listener

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

70 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ARCHIVE NOTICE

TL;DR - This project is looking for maintainers

If:

  1. you have experience with any of the following:
    • Node-TypeScript
    • Keyboard hooking on Windows (current implementation in C++)
    • Keyboard hooking on Mac (current implementation in Swift)
    • Keyboard hooking on Linux (current X11 implementation in C++)
    • Publishing NPM packages
  2. Own a Windows, Mac or Linux machine.
  3. Are interested in maintaining an open source project (e.g. testing PRs on the system, fixing issues)

Please apply to become a maintainer. Otherwise this repo will remain archived.

Thanks & Goodbye

This project was created as a result of the stability concerns for other NodeJS keyboard hooking projects, and initially for use with LaunchMenu. At the beginning we were investing heavily in launchmenu, however unfortunately this project didn't kick off and the maintainers @TarVK and @Sancarn have moved onto bigger and better things. At this stage, it's been many years since this project has been actively maintained, and the previous stability of this project has been deteriating (see #36, #41, #34, #23). Thusly we sadly feel compelled to archive this project until new serious maintainers for this project hop on board.

Thanks everyone for using this project, and we hope you get use out of the old stable versions.

node-global-key-listener

Description

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 X11 only Arch Linux

This keyboard listener was originally made for the productivity application, LaunchMenu.

Usage

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),
        }
    })
*/

Installation

To install this npm package call:

npm install node-global-key-listener

Is this the right package for you?

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:

Electron::globalShortcut

Advantages:

  • Native to electron apps
  • No compiling issues with Node-gyp
  • All execution occurs in-process

Disadvantages:

  • 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.

Advantages:

  • 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.

Disadvantages:

  • 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.

Advantages:

  • 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.

Disadvantages:

  • 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.

Developement

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.

Modifying the compiled binaries

To modify the Windows C++ or Mac Swift source code please compile these applications before testing with:

Pre-requisites

Windows

This project is configured to use mingw, and thus this should be installed before compiling the source code.

Compiling the binary code

To compile the source code of these applications use the below command line commands respective to the system you are working on.

Windows
npm run compile-win
Mac
npm run compile-mac
Linux (X11)
npm run compile-x11

Notes

  • 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 in core/keyHandler.