useKeyPress
Source on GitHub (opens in a new tab)
This hook lets you listen for specific key codes and tells you whether they are currently pressed or not.
import { useKeyPress } from '@xyflow/react';
 
export default function () {
  const spacePressed = useKeyPress('Space');
  const cmdAndSPressed = useKeyPress(['Meta+s', 'Strg+s']);
 
  return (
    <div>
      {spacePressed && <p>Space pressed!</p>}
      {cmdAndSPressed && <p>Cmd + S pressed!</p>}
    </div>
  );
}Signature
| Name | Type | 
|---|---|
#Params  |  | 
# keyCode | string | string[] | nullA string can be used to represent both a single key code like
      "Space" or a combination of keys like "Meta+s". If you pass in an array of
      strings, multiple key codes can be used to toggle the hook.  | 
# options | object | 
# options.target | Window | Document | HTMLElement | ShadowRoot | null;You may want to listen to key presses on a specific element.
      This field lets you configure that!  | 
#Returns  |  | 
boolean | 
Notes
- This hook does not rely on a 
ReactFlowInstanceso you are free to use it anywhere in your app!