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

shocut

v1.0.0

Published

A fast, lightweight, multi-context and i18n friendly keyboard shortcut library for web-based renderers

Downloads

5

Readme

Shocut

Shocut is a fast keyboard shortcuts (hotkey) library for web based renderers (web apps and Electron apps).

Key Features:

  • Multi-context support: set any number of contexts that can be active and define shortcuts that can only fire in certain contexts and / or never fire fire in certain contexts. Supports both AND and OR rules and makes it possible to define shortcut combos (i.e. Ctrl+K, V).
  • Fast: Shocut is not only lightweight but ensures that minimal resources are used while typing. If all shortcuts in the active contexts are bound with modifier keys (except special keys like Escape or F-keys), Shocut will immediately skip processing regular typing keystrokes since they are sure to not trigger any shortcuts.
  • i18n friendly - supports non-Latin alphabet layouts well by falling back to the physical QWERTY code value when a non-Latin alphabet letter is pressed while still respecting custom Latin alphabet keyboard layouts like Dvorak.
  • A virtual 'system' modifier that maps to the command key on Mac OS and the control key on other systems allowing to easily define keyboard shortcuts that respect the OS's convention.
  • 0 dependencies

Installation

npm install shocut --save

Basic Usage

import { Shocut } from 'shocut';

const sh = new Shocut({
  shortcuts: [
    {
      key: 'K',
      mod: ['ctrl'],
      handler() { alert('You have pressed Ctrl + K'); },
    },
  ],
});

Documentation and Examples

Browser Support

Shocut is available as an ES2015 bundle and needs to go through further transpilation to target older browsers which should be handled by your bundler.

Besides transpilation, you must ensure the following APIs are polyfilled to support older browsers:

  • Array.prototype.includes
  • Map.prototype.entries