
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
react-native-key-command
Advanced tools
A cross-platform module that registers and listens to specified keyboard events, dispatching the payload to JavaScript
A cross-platform module that registers and listens to specified keyboard events, dispatching the payload to JavaScript.
✅ Android ✅ iOS ✅ Web
npm install react-native-key-command
cd ios && pod install
Changes required in your AppDelegate.m
// add library imports in the top of your file
#import <HardwareShortcuts.h>
@implementation AppDelegate
..
// Add keyCommands and handleKeyCommand methods in AppDelegate class
- (NSArray *)keyCommands {
return [HardwareShortcuts sharedInstance].keyCommands;
}
- (void)handleKeyCommand:(UIKeyCommand *)keyCommand {
[[HardwareShortcuts sharedInstance] handleKeyCommand:keyCommand];
}
@end
Changes required in your MainActivity.java
// add library imports in the top of your file
import android.view.KeyEvent;
import com.expensify.reactnativekeycommand.KeyCommandModule;
public class MainActivity extends ReactActivity {
..
// Add a new onKeyDown method in MainActivity class
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
KeyCommandModule.getInstance().onKeyDownEvent(keyCode, event);
return super.onKeyDown(keyCode, event);
}
import * as KeyCommand from 'react-native-key-command';
// ...
/**
* [CMD + F] combination listener
*/
React.useEffect(() => {
const SEARCH_COMMAND = {input: 'f', modifierFlags: KeyCommand.constants.keyModifierCommand};
return KeyCommand.addListener(SEARCH_COMMAND, console.log);
}, []);
/**
* [Esc] key listener
*/
React.useEffect(() => {
const ESCAPE_COMMAND = {input: KeyCommand.constants.keyInputEscape};
return KeyCommand.addListener(ESCAPE_COMMAND, console.log);
}, []);
List of available modifier flags. Values on Android may vary.
KeyCommand.constants = {
"keyInputDownArrow": 20,
"keyInputEscape": 111,
"keyInputLeftArrow": 21,
"keyInputRightArrow": 22,
"keyInputUpArrow": 19,
"keyModifierCapsLock": 65536,
"keyModifierCommand": 1048576,
"keyModifierControl": 262144,
"keyModifierControlCommand": 1310720,
"keyModifierControlOption": 786432,
"keyModifierControlOptionCommand": 1835008,
"keyModifierNumericPad": 78,
"keyModifierOption": 524288,
"keyModifierOptionCommand": 1572864,
"keyModifierShift": 131072,
"keyModifierShiftCommand": 1179648
}
Imperative API provides you with granular control over the library, e.g:
import * as KeyCommand from 'react-native-key-command';
// ...
const SEARCH_COMMAND = {input: 'd', modifierFlags: KeyCommand.constants.keyModifierCommand};
/**
* Register a command for [k + CMD] combination
*/
KeyCommand.registerKeyCommands([SEARCH_COMMAND]);
/**
* Add a global event listener that will trigger when any
* registered keycommand is pressed
*/
KeyCommand.eventEmitter.addListener('onKeyCommand', console.log);
/**
* Add a global event listener that will trigger when any
* registered keycommand is pressed
*/
KeyCommand.eventEmitter.addListener('onKeyCommand', console.log);
/**
* Unregister keycommand
*/
KeyCommand.unregisterKeyCommands([SEARCH_COMMAND]);
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
FAQs
A cross-platform module that registers and listens to specified keyboard events, dispatching the payload to JavaScript
The npm package react-native-key-command receives a total of 18,132 weekly downloads. As such, react-native-key-command popularity was classified as popular.
We found that react-native-key-command demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.