react-keybind
react-keybind copied to clipboard
A lightweight library to manage global keyboard shortcuts for your React application
Bumps [ws](https://github.com/websockets/ws) from 8.16.0 to 8.17.1. Release notes Sourced from ws's releases. 8.17.1 Bug fixes Fixed a DoS vulnerability (#2231). A request with a number of headers exceeding the[server.maxHeadersCount][] threshold...
In macos, while `cmd` (that is meta key) is pressed no other key's keyup event is fired. This PR adds a test case for same and fixes it. fixes: https://github.com/dddice/react-keybind/issues/576
Suppose we have a sample app like below. Assume `` is wrapped with `` Sample application. Please click me! ```typescript import { useState, useEffect } from 'react' import { useShortcut...