keypress-event
v1.1.2
Published
Listen to the key press
Downloads
12
Maintainers
Readme
Capture the specified shortcut
Usage
import Keypress from 'keypress-event'
Keypress.registerShortcut(['ctrl', 'alt', 'u'], () => {
console.log('Ctrl+Alt+u trigger')
})
Keypress.start()
When You press the shortcut at the sametime, the callback function will be executed.