
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-better-hotkeys
Advanced tools
A tiny, typed helper for registering global hotkeys in React. It supports both **chords** (e.g. `Shift + Alt + A`) and **key sequences** (e.g. `g` then `h`), respects platform-specific modifier keys, and cleans up registrations automatically.
A tiny, typed helper for registering global hotkeys in React. It supports both chords (e.g. Shift + Alt + A) and key sequences (e.g. g then h), respects platform-specific modifier keys, and cleans up registrations automatically.
Docs: https://selokhq.github.io/react-better-hotkeys/
Mod alias mapping to ⌘ on macOS and Ctrl on Windows/Linux.code vs character key so shortcuts stay stable across layouts.npm install react-better-hotkeys
import { Hotkey, HotkeyProvider, useHotkey } from "react-better-hotkeys";
function Shortcuts() {
// Layout-stable chord: Shift + OS-aware Mod + physical "K" key
useHotkey(Hotkey.Chord.Shift.Mod.K, () => {
console.log("Shift+⌘+K / Shift+Ctrl+K pressed")
});
// Sequence: press "g" then "h"
useHotkey(Hotkey.Sequence.KeyG.KeyH.end, () => {
console.log("[G]o [H]ome")
});
return null;
}
export default function App() {
return (
<HotkeyProvider>
<Shortcuts />
</HotkeyProvider>
);
}
Looking to contribute? Look for the Good First Issue label.
Please file an issue for bugs, missing documentation, or unexpected behavior.
Please file an issue to suggest new features. Vote on feature requests by adding a 👍. This helps to prioritize what to work on.
FAQs
A tiny, typed helper for registering global hotkeys in React. It supports both **chords** (e.g. `Shift + Alt + A`) and **key sequences** (e.g. `g` then `h`), respects platform-specific modifier keys, and cleans up registrations automatically.
We found that react-better-hotkeys demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.