New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@suporka/keybind

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@suporka/keybind

快捷键组合库

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

keybind

Shortcut key combination library, make your keyboard key combination as easy to use as a publish-subscriber, subscribe and unsubscribe anywhere

快捷键组合库,让你的键盘组合键像发布订阅器一样简单使用,随处订阅和取消订阅

Getting started

install module

npm i @suporka/keybind --save

use it in anywhere

import keybind from '@suporka/keybind'
// bind one
keybind.bind('ctrl + s', function(event) {
  // do what you want to do
}, context)

// bind more
keybind.bind(['ctrl + s', 'shift + s'], function(event) {
  event.preventDefault()
  event.stopPropagation()
  // do what you want to do
}, context)

// unbind all
keybind.unbind('ctrl + s')

// unbind one by callback
keybind.unbind('ctrl + s', callback, context)

Preventing the default action

keybind.bind('ctrl + s', function(event) {
  event.preventDefault()
  event.stopPropagation()
  // do what you want to do
}, context)

Supported keys

  • modifiers shift, ctrl, alt

  • letters a to z

  • numbers 0 to 9

  • functions f1 to f12

  • arrows left, up, right, down

  • ohter enter, esc, space, backspace, del, tab, pageup, pagedown, home, end, capslock, shift, ctrl, alt, ins

  • shiftkey ~ ! @ # $ % ^ & * ( ) _ + : " < > ? |

Questions or advise

If you have some question or advise, you can send me a E-mail,or create a issue.

FAQs

Package last updated on 26 Apr 2022

Did you know?

Socket

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.

Install

Related posts