Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/linyimin0812/keypress-event

Listen to the key press
https://github.com/linyimin0812/keypress-event

iohook keypress typescript

Last synced: 27 days ago
JSON representation

Listen to the key press

Awesome Lists containing this project

README

        

Capture the specified shortcut

### Usage
```typescript
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.