0.0.5 • Published 2 years ago

@pangenerator/hotkeys v0.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Hotkeys helper library

Used in various interactive installations

Using the library

Install the library

npm install @pangenerator/hotkeys

Import the library

import Hotkeys from '@pangenerator/hotkeys'

Configure keys

import Hotkeys from './src/hotkeys.js'
      const hotkeys = new Hotkeys([
        { key: 'ArrowUp', meta: true, shift: true, alt: true, ctrl: true, description: 'Fired when Command + Shift + Alt/Option + Control + Arrow Up is pressed', callback: () => { console.log('UP') } },
        { key: '2', description: `Fired when '2' is pressed"`, callback: () => { console.log('2') }},
        { key: 'F', description: `Fired when 'F' is pressed"`, callback: () => { console.log('F') }},
      ])