npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

uinput

v1.1.1

Published

Linux uinput module

Downloads

97

Readme

node-uinput

Linux uinput nodejs wrapper

Installation

npm install uinput

Example

Say hello BYE

var uinput = require('uinput');

var setup_options = {
    EV_KEY : [ uinput.KEY_H, uinput.KEY_E, uinput.KEY_L, uinput.KEY_O,
               uinput.KEY_CAPSLOCK, uinput.KEY_B, uinput.KEY_Y, uinput.KEY_SPACE ]
}

uinput.setup(setup_options, function(err, stream) {
    if (err) {
        throw(err);
    }

    var create_options = {
        name : 'myuinput',
        id : {
            bustype : uinput.BUS_VIRTUAL,
            vendor : 0x1,
            product : 0x1,
            version : 1
        }
    };

    uinput.create(stream, create_options, function(err) {
        if (err) {
            throw(err);
        }

        setTimeout(function() {
            uinput.key_event(stream, uinput.KEY_H, function(err) {
                if (err) {
                    throw(err);
                }

                uinput.key_event(stream, uinput.KEY_E, function(err) {
                    if (err) {
                        throw(err);
                    }

                    uinput.key_event(stream, uinput.KEY_L, function(err) {
                        if (err) {
                            throw(err);
                        }

                        uinput.key_event(stream, uinput.KEY_L, function(err) {
                            if (err) {
                                throw(err);
                            }

                            uinput.key_event(stream, uinput.KEY_O, function(err) {
                                if (err) {
                                    throw(err);
                                }
                            });
                        });
                    });
                });
            });
        }, 2000);

        setTimeout(function() {
            var keys = [ uinput.KEY_SPACE, uinput.KEY_CAPSLOCK, uinput.KEY_B, uinput.KEY_Y, uinput.KEY_E ];
            uinput.emit_combo(stream, keys, function(err) {
                if (err) throw(err);
            });
        }, 3000);
    });
});

API

uinput.setup(options, callback)

  • options Object
    • event_type where event_type can be EV_KEY, EV_ABS, EV_REL, etc. and it's an Array with the different events we want the uinput device to handle
  • callback Function called when the setup operation ends
    • error Error
    • stream WritableStream to the uinput device.

It configures the uinput device we are about to create.

uinput.create(stream, options, callback)

  • stream WritableStream
  • options Object. See uinput_user_dev definition in linux/uinput.h
    • name String with the name of the device
    • id Object
      • bustype Number
      • vendor Number
      • product Number
      • version Number
    • ff_effects_max Number
    • absmax Array of Numbers of size: uinput.ABS_CNT
    • absmin Array of Numbers of size: uinput.ABS_CNT
    • absfuzz Array of Numbers of size: uinput.ABS_CNT
    • absflat Array of Numbers of size: uinput.ABS_CNT
  • callback Function called when the creation operation ends
    • error Error

It creates the uinput device.

send_event(stream, type, code, value, callback)

  • stream WritableStream
  • type Number
  • code Number
  • value Number
  • callback Function

It sends an event to the uinput device.

key_event(stream, code, callback)

  • stream WritableStream
  • code Number
  • callback Function

Wrapper over send_event to simulate key presses and mouse clicks.

emit_combo(stream, code, callback)

  • stream WritableStream
  • code Array with any combination of keys
  • callback Function

It sends an event to the uinput device with the combination keys generated.