Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
linux-input-device
Advanced tools
A simple library to receive events in NodeJS when input events occur
Native addon to communicate with linux input devices.
Install with npm
:
$ npm install linux-input-device
new LinuxInputListener( String devicePath )
Creates a new LinuxInputListener instance.
path
A path to a linux input deviceEvent: state( Boolean state, Number keyCode, String keyKind )
Fired when a key state changes or when a key is queried.
state
True if the key is pressed, false otherwisekeyCode
Code of the key whose state has changedkeyKind
Category of the key.String[] LinuxInputListener.KEY_KINDS
Array containing all supported key kinds, like EV_KEY, EV_SW, or EV_LED.
LinuxInputListener.query( String keyKind, Number keyCode )
Query the current key. Also fires the state event.
keyCode
Code of the key whose state to querykeyKind
Category of the key. Must be one of the strings in LinuxInputListener.KEY_KINDSLinuxInputListener.close([Function callback()])
Closes the current device and invoke callback when the device is closed.
callback()
[optional] A callback functionvar LinuxInputListener = require('linux-input-device');
var SW_LID = 0x00;
var input = new LinuxInputListener('/dev/input/event0');
input.on('state', function(value, key, kind) {
console.log('State is now:', value, 'for key', key, 'of kind', kind);
});
input.on('error', console.error);
//start by querying for the initial state.
input.on('open' => input.query('EV_SW', SW_LID));
FAQs
A simple library to receive events in NodeJS when input events occur
We found that linux-input-device 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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.