npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

modern-hotkeys

v2.1.3

Published

<p align="center"> <img src="https://img.shields.io/npm/l/modern-hotkeys"> <img src="https://img.shields.io/npm/dt/modern-hotkeys"> <img src="https://img.shields.io/npm/v/modern-hotkeys"> <img src="https://img.shields.io/github/stars/pato12/modern-hotkeys

Downloads

164

Readme

modern-hotkeys

modern-hotkeys is a library that makes it easy to create hotkeys for your applications. It uses modern APIs and supports multiple combinations of keyboard layouts. Furthermore, its customizable event filter and scope system allows you to easily add hotkeys to any part of your application. You can create a smooth and reliable hotkey experience for your users. It has no dependencies.

How to install

yarn add modern-hotkeys

or

npm i modern-hotkeys

Usage

import { hotkeys } from 'modern-hotkeys';

hotkeys('shift + a', (event, handler) => {
  // it always prevents default
  console.log('You pressed shift + a!');
});

Main difference with Hotkeys

  • Always prevent default all events
  • Set an order in your shortcuts
  • Stop propagation if you have multiple shorcuts with the same keys
  • Use modern APIs
  • Prepared to work with different keyboard layouts such as Spanish (by default it's enUS)
  • Create your own instance

Supported Keys

Modern HotKeys understands the following modifiers: , shift, option, , alt, ctrl, control, , command, and .

To see all supported keys check out the layouts:

If you need another layout you can create using the interface KeyboardLayout.

import { KeyboardLayout, hotkeys } from 'modern-hotkeys';

const MyLayout: KeyboardLayout = {
  Backspace: { value: 'backspace' },
  Tab: { value: 'tab' },
  NumLock: { value: 'NumLock' },
  ...
};

hotkeys.setKeyboardLayout(MyLayout);

Define a shortcut

We export a global instance but you can create your own one.

Using the global instance

import { hotkeys } from 'modern-hotkeys';

hotkeys('command + s, ctrl + s', () => {
  alert('saving!');
});

Creating own instance

import { createHotkeys } from 'modern-hotkeys';

const instance = createHotkeys({ element: document.body });

instance.hotkeys('command + s, ctrl + s', () => {
  alert('saving!');
});

API references

createHotkeys

Creates a new instance of hotkeys with the specified options.

Parameters

  • element (HTMLElement): Element to bind events to.
  • keyboard (KeyboardLayout): Keyboard layout to use. Default is Layouts['en-us'].
  • autoWatchKeys (boolean): Whether to automatically watch for keys. Default is true.
  • watchCaps (boolean): Whether to watch for the CapsLock key. Default is false.
  • autoPreventDefault (boolean): Whether to automatically prevent default. Default is true.

scope

Scopes allow you to isolate your shortcuts and only execute depending on the scope that your app is running.

import { hotkeys } from 'modern-hotkeys';

hotkeys('command + s, ctrl + s', 'file', () => {
  alert('saving file! you are in the scope ' + hotkeys.getScope());
});

<button onClick={() => hotkeys.setScope('file')}>set file scope</button>;

// or if you have your instance

import { createHotkeys } from 'modern-hotkeys';

const instance = createHotkeys({ element: document.body });

instance.hotkeys('command + s, ctr + s', 'file', () => {
  alert('saving file! you are in the scope ' + instance.getScope());
});

<button onClick={() => instance.setScope('file')}>set file scope</button>;

getKeysDown

Returns a Set with all keys down.

import { hotkeys } from 'modern-hotkeys';

hotkeys('a, b, c', () => {
  console.log(hotkeys.getKeysDown().has('a'));
  console.log(hotkeys.getKeysDown().has('b'));
  console.log(hotkeys.getKeysDown().has('c'));
});

isPressed

Return a boolean to know if a key is pressed

import { hotkeys } from 'modern-hotkeys';

hotkeys('a, b, c', () => {
  console.log(hotkeys.isPressed('a'));
  console.log(hotkeys.isPressed('b'));
  console.log(hotkeys.isPressed('c'));
});

layouts

You can get the default layouts exported by the library with Layouts or create your own one. To change the layout use the setKeyboardLayout.

import { hotkeys, Layouts } from 'modern-hotkeys';

hotkeys(...);

hotkeys.setKeyboardLayout(Layouts['es-la']);


// or if you have your instance

import { createHotkeys, Layouts } from 'modern-hotkeys';

const instance = createHotkeys({ element: document.body });

instance.hotkeys(...);
instance.setKeyboardLayout(Layouts['es-la']);

unbind

Unbind a shortcut or all shortcuts.

import { hotkeys } from 'modern-hotkeys';

// unbind defined key
hotkeys.unbind('ctrl + s');

// unbind defined key and scope
hotkeys.unbind('command + s', 'my-scope-files');

// unbind all
hotkeys.unbind();

// or if you have your instance

import { createHotkeys } from 'modern-hotkeys';

const instance = createHotkeys({ element: document.body });

// unbind defined key
instance.unbind('ctrl + s');

// unbind defined key and scope
instance.unbind('command + s', 'my-scope-files');

// unbind all
instance.unbind();

setEventFilter

Useful to filter input events and not fire shortcut when the user is writing on an input.

import { hotkeys } from 'modern-hotkeys';

// filter inputs
hotkeys.setEventFilter((e) => e.target?.tagName !== 'INPUT');

// allow all events
hotkeys.setEventFilter(() => true);

// or if you have your instance

import { createHotkeys } from 'modern-hotkeys';

const instance = createHotkeys({ element: document.body });

// filter inputs
instance.setEventFilter((e) => e.target?.tagName !== 'INPUT');

// allow all events
instance.setEventFilter(() => true);

setVerbose

Show debug logs

import { createHotkeys } from 'modern-hotkeys';

const instance = createHotkeys({ element: document.body });

instance.setVerbose(true);

instance.hotkeys('shift + c', () => {
  ...
});

stopPropagation

import { hotkeys } from 'modern-hotkeys';

hotkeys(
  'escape',
  (e, h) => {
    h.stopPropagation();
    alert('cancelling 1!');
  },
  { order: 0 },
);

hotkeys(
  'escape',
  () => {
    // it won't be triggered
    alert('cancelling 2!');
  },
  { order: 1 },
);

Options

The third argument of hotkeys could be an object with options.

order

You can scale the priority of a shortcut using negative numbers.

import { hotkeys } from 'modern-hotkeys';

hotkeys('escape', () => {
  alert('cancelling 2!');
});

hotkeys(
  'escape',
  (e, h) => {
    alert('cancelling 1!');
  },
  { order: -1000 },
);

event

You can define what event will trigger your shortcut

import { hotkeys } from 'modern-hotkeys';

hotkeys(
  'control + s',
  () => {
    console.log('triggered on keydown');
  },
  { event: 'keydown' },
);

hotkeys(
  'control + s',
  () => {
    console.log('triggered on keyup');
  },
  { event: 'keyup' },
);

scope

Define the scope of the shortcut

import { hotkeys } from 'modern-hotkeys';

hotkeys(
  'control + s',
  () => {
    console.log('triggered on scope myscope');
  },
  { scope: 'myscope' },
);

License

MIT