
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
logitech-g29
Advanced tools
This library is no longer being tested or updated as I no longer have access to the hardware.
Bring your Logitech G29 Racing Wheel into the wonderful world of Node.
Node version 10.16 or the Node version required by any dependency, whichever is greater.
Make sure the Logitech G29 mode switch is set to PS3. The switch is located above the middle of the steering wheel.
This library uses node-hid behind the scenes. Depending on your OS and Node version, you may have an effortless install. If not, you may want to consult node-hid's compiling from source guide for assistance.
npm install logitech-g29
Windows users who are having trouble connecting to a wheel may need to run the Logitech G Hub software one time to setup drivers.
Ubuntu users will most likely want to remove the sudo requirement of interfacing with the wheel. This can be accomplished by creating a file at /etc/udev/rules.d/99-hidraw-permissions.rules with the following code. After saving the file, reboot and then you can move on to more fun tasks.
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", MODE="0664", GROUP="plugdev"
Let's have some fun and make our wheel LEDs light up when we press the gas pedal.
const g = require('logitech-g29')
g.connect(function(err) {
g.on('pedals-gas', function(val) {
g.leds(val)
})
})
Vroom vroom sounds optional but encouraged. ^_^
This work has been marked as dedicated to the public domain.
FAQs
Logitech G29 Racing Wheel for Node
The npm package logitech-g29 receives a total of 19 weekly downloads. As such, logitech-g29 popularity was classified as not popular.
We found that logitech-g29 demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.