
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@hkaspy/joystick-linux
Advanced tools
Thin wrapper around Linux's Joystick API.
npm install @hkaspy/joystick-linux
Tested on Node.js v14 LTS and v16 LTS.
import Joystick from "@hkaspy/joystick-linux";
const stick = new Joystick("/dev/input/js0");
stick.on("update", (ev) => console.log(ev));
Debian (and other Debian-based OSes like Raspberry Pi OS and Ubuntu) has quite good out-of-the-box support for joysticks and gamepads, exposing a unified Joystick API.
So if you manage to connect your gamepad, you can most probably use this module - see Debian Gamepad Wiki
new Joystick(
// path to your Joystick device
"/dev/input/js0",
{
// first batch of events is the initial state of buttons/axies
// it gets dropped if you don't set includeInit: true
includeInit: true,
// link a mapper function to map these general events to your specific device
mappingFn: (e) => e,
}
);
updateEmitted on each button press or exis value change.
stick.on("update", (data) => console.log(data));
{
// if this event is from the initial batch
isInitial: false,
// button/axis number
number: 1,
// number of milliseconds since an arbitrary point in time (same point in time for all events in one session)
time: 87465,
// "BUTTON" or "AXIS"
type: "BUTTON",
// 0 or 1 (pressed) for type: BUTTON
// -32767 to +32767 for type: AXIS
value: 0,
}
disconnectEmitted when connection to the joystick is lost.
stick.on("disconnect", () => console.log('disconnected'));
errorEmitted when there is an error with the joystick device (e.g. the specified path doesn't exist).
stick.on("error", (err) => console.log('Error!', err));
Include your custom mapping function to add more information to the event.
See the included xbox one controller mapper for example:
import Joystick from "@hkaspy/joystick-linux";
import { xboxOneMapper } from "@hkaspy/joystick-linux/mappers";
const stick = new Joystick("/dev/input/js0", { mappingFn: xboxOneMapper });
stick.on("update", (ev) => console.log(ev));
{
isInitial: false,
number: 4,
time: 87465,
type: "BUTTON",
value: 1,
// friendly button name
name: "LEFT_BUMPER",
}
Inspired by the joystick module, but implemented as a file stream reader, which is more performant for me. On the other hand, this module doesn't do deadzone and sensitivity.
FAQs
Thin wrapper around Linux's Joystick API.
We found that @hkaspy/joystick-linux demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.