piano-keys
TypeScript icon, indicating that this package has built-in type declarations

2.1.0 • Public • Published

Piano keys

npm version PRs Welcome

A JavaScript hotkeys librairy in less than 3KB.

Checkout the demo!

Installation

npm install piano-keys --save

Usage

import hotkeys from 'piano-keys'

const element = document.getElementById('hello')

hotkeys(element, 'ctrl+b', () => console.log('bold'))
hotkeys(element, 'cmd+k a', () => console.log('super settings'))
hotkeys(element, 'up up down down left right left right b a', () => console.log('konami code'))
hotkeys(element, '1', () => console.log('fire on keyup'), true)

// To unregister the listeners use the return function
const unregisterHotkeys = hotkeys(element, 'a', () => console.log('pressed a'))

unregisterHotkeys()

Available descriptors: ctrl shift alt altgr cmd enter tab space backspace escape capslock up down left right plus contextmenu delete insert pause home end numlock

Usage with react

Checkout react-piano-keys

Contributing

Yes, thank you.

License

MIT

/piano-keys/

    Package Sidebar

    Install

    npm i piano-keys

    Weekly Downloads

    7

    Version

    2.1.0

    License

    MIT

    Unpacked Size

    11.3 kB

    Total Files

    7

    Last publish

    Collaborators

    • dherault