Skip to content

panGenerator/hotkeys

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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') }},
      ])

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published