@hscmap/keybind
TypeScript icon, indicating that this package has built-in type declarations

0.2.0 • Public • Published

Keybind

This module provide a way for listening for key combination events with simple API.

Example (Source of the working demo)

import * as keybind from "@hscmap/keybind"

window.addEventListener('load', () => {
    keybind.on('shift+x', () => alert('shift + X'))
    keybind.on('alt+x', () => alert('alt + X'))
    keybind.on('ctrl+x', () => alert('ctrl + X'))
    keybind.on('meta+x', () => alert('meta + X'))

    // can be triggered only once
    const off = keybind.on('shift+ctrl+x', () => {
        alert('shift + ctrl + X (triggered only once)')
        off()
    })

    const sources = ['shift+x', 'alt+x', 'ctrl+x', 'meta+x', 'shift+ctrl+x']
    for (const s of sources) {
        const html = keybind.html(s)
        const div = document.createElement('div')
        div.innerHTML = html
        document.body.appendChild(div)
    }
})

Readme

Keywords

none

Package Sidebar

Install

npm i @hscmap/keybind

Weekly Downloads

513

Version

0.2.0

License

none

Unpacked Size

5.59 kB

Total Files

4

Last publish

Collaborators

  • michitaro