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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@winput/keyboard

v1.0.11

Published

Windows keyboard automation for Bun - simulate keystrokes, hotkeys, and listen to key events

Downloads

987

Readme

@winput/keyboard ⌨️

npm

Keyboard automation for Windows - simulate keystrokes, hotkeys, and monitor key states.

Requirements

  • OS: Windows 64-bit
  • Runtime: Bun (npm not supported)

Installation

bun add @winput/keyboard

Usage

import { keyboard, VK_CODES, KEYBOARD_MAPPING } from "@winput/keyboard";

keyboard.write("Hello World!");
keyboard.hotkey(["ctrl", "s"]);

keyboard.listener.on.down((e) => {
  console.log(`Key: ${e.key}, VK: ${e.vk_code}`);
});
keyboard.listener.start();

API

keyboard

| Method | Params | Returns | Description | |--------|--------|---------|-------------| | press(key) | KeyName | Keyboard | Press and hold a key | | release(key) | KeyName | Keyboard | Release a held key | | tap(key) | KeyName | Keyboard | Press and release a key | | repeatTap(key, count?, delay?) | KeyName, number, number | Keyboard | Tap multiple times | | write(text, delay?) | string, number | Keyboard | Type characters | | hotkey(keys) | KeyName[] | Keyboard | Keyboard shortcut | | hold(key, duration) | KeyName, number | Keyboard | Hold for duration | | isPressed(key) | KeyName | boolean | Check if pressed | | isAnyPressed(keys) | KeyName[] | boolean | Any key pressed | | areAllPressed(keys) | KeyName[] | boolean | All keys pressed | | waitForPress(key, timeout?) | KeyName, number | Promise<boolean> | Wait for press | | waitForRelease(key, timeout?) | KeyName, number | Promise<boolean> | Wait for release | | toggleKey(key) | KeyName | Keyboard | Toggle lock keys | | getKeyState(key) | KeyName | KeyState | Get key state | | releaseAll() | - | Keyboard | Release all keys | | listener | - | Listener | Event listener |

Listener

| Method | Params | Returns | Description | |--------|--------|---------|-------------| | on.down(handler) | KeyHandler | void | Key pressed | | on.up(handler) | KeyHandler | void | Key released | | once.down(handler) | KeyHandler | void | One-time press | | off.down(handler) | KeyHandler | void | Remove handler | | start() | - | void | Start listening | | stop() | - | void | Stop listening |

Types

KeyName

type KeyName = "a" | "b" | ... | "ctrl" | "shift" | "alt" | "enter" | "space" | ...

KeyState

{
  isPressed: boolean;  // Key is held down
  isToggled: boolean;  // Lock key is on
}

KeyboardEvent

{
  event: string;      // "keydown" | "keyup"
  key: string;        // Key name
  vk_code: number;    // Virtual key code
  scan_code: number;  // Scan code
}

KeyHandler

type KeyHandler = (event: KeyboardEvent) => void

Exports

| Export | Type | Description | |--------|------|-------------| | keyboard | Keyboard | Main keyboard operations | | VK_CODES | object | Virtual key code constants | | KEYBOARD_MAPPING | object | Key definitions | | KeyName | KeyName | Valid key names |

License

MIT